COMP: fix warning about unused variable

Alex
This commit is contained in:
Alexander Neundorf 2007-07-17 13:10:17 -04:00
parent b56815a4e9
commit 11742beb1b
1 changed files with 2 additions and 2 deletions

View File

@ -215,8 +215,8 @@ static std::string cmakemainGetStack(void *clientdata)
return msg;
}
static void cmakemainErrorCallback(const char* m, const char* title,
bool& nomore, void *clientdata)
static void cmakemainErrorCallback(const char* m, const char*, bool&,
void *clientdata)
{
std::cerr << m << cmakemainGetStack(clientdata) << std::endl << std::flush;
}