From 7eb79733932c90642366fc3fc5e40d471fcf8759 Mon Sep 17 00:00:00 2001 From: Andy Cedilnik Date: Tue, 22 Jul 2003 13:53:06 -0400 Subject: ERR: Fix error on bad C++ compiler that do not handle return void --- Source/cmCPluginAPI.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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(arg); - return mf->DisplayStatus(message, -1); + mf->DisplayStatus(message, -1); } void cmFree(void *data) -- cgit v0.12