ERR: Fix error on bad C++ compiler that do not handle return void

This commit is contained in:
Andy Cedilnik 2003-07-22 13:53:06 -04:00
parent ef20a2a8a9
commit 7eb7973393
1 changed files with 1 additions and 1 deletions

View File

@ -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)