diff options
author | Andy Cedilnik <andy.cedilnik@kitware.com> | 2003-07-22 17:53:06 (GMT) |
---|---|---|
committer | Andy Cedilnik <andy.cedilnik@kitware.com> | 2003-07-22 17:53:06 (GMT) |
commit | 7eb79733932c90642366fc3fc5e40d471fcf8759 (patch) | |
tree | 78a29acd409f7e845baacb7c5136de34f9f3ce3e /Source/cmCPluginAPI.cxx | |
parent | ef20a2a8a9bf810bce43f53a121ad2dd3fc6c9b8 (diff) | |
download | CMake-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.cxx | 2 |
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) |