summaryrefslogtreecommitdiffstats
path: root/Source/cmCPluginAPI.cxx
diff options
context:
space:
mode:
authorAndy Cedilnik <andy.cedilnik@kitware.com>2003-07-22 17:53:06 (GMT)
committerAndy Cedilnik <andy.cedilnik@kitware.com>2003-07-22 17:53:06 (GMT)
commit7eb79733932c90642366fc3fc5e40d471fcf8759 (patch)
tree78a29acd409f7e845baacb7c5136de34f9f3ce3e /Source/cmCPluginAPI.cxx
parentef20a2a8a9bf810bce43f53a121ad2dd3fc6c9b8 (diff)
downloadCMake-7eb79733932c90642366fc3fc5e40d471fcf8759.zip
CMake-7eb79733932c90642366fc3fc5e40d471fcf8759.tar.gz
CMake-7eb79733932c90642366fc3fc5e40d471fcf8759.tar.bz2
ERR: Fix error on bad C++ compiler that do not handle return void
Diffstat (limited to 'Source/cmCPluginAPI.cxx')
-rw-r--r--Source/cmCPluginAPI.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmCPluginAPI.cxx b/Source/cmCPluginAPI.cxx
index b8c562f..d31f52b 100644
--- a/Source/cmCPluginAPI.cxx
+++ b/Source/cmCPluginAPI.cxx
@@ -539,7 +539,7 @@ void cmRemoveFile(const char *name)
void cmDisplayStatus(void *arg, const char* message)
{
cmMakefile *mf = static_cast<cmMakefile *>(arg);
- return mf->DisplayStatus(message, -1);
+ mf->DisplayStatus(message, -1);
}
void cmFree(void *data)