COMP: patch from Mathieu: fix warning about unused variables in bootstrap

mode

Alex
This commit is contained in:
Alexander Neundorf 2007-08-14 10:27:34 -04:00
parent eff7981b57
commit f13c3eef83
1 changed files with 3 additions and 1 deletions

View File

@ -1091,7 +1091,9 @@ bool cmSystemTools::ComputeFileMD5(const char* source, char* md5out)
fin.close();
return true;
#else
#else
(void)source;
(void)md5out;
cmSystemTools::Message("md5sum not supported in bootstrapping mode","Error");
return false;
#endif