Browse Source

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

pull/1/head
Andy Cedilnik 22 years ago
parent
commit
7eb7973393
  1. 2
      Source/cmCPluginAPI.cxx

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

Loading…
Cancel
Save