Fix compilation of cutter and exploder tools when using -Werror

This commit is contained in:
Ignacio R. Morelle 2009-11-15 22:44:17 +00:00
parent bb28a30fc3
commit 5f63c50f59
2 changed files with 6 additions and 0 deletions

View file

@ -96,7 +96,10 @@ int main(int argc, char* argv[])
} catch(exploder_failure err) {
std::cerr << "Failed: " << err.message << "\n";
return 1;
}
return 0;
}

View file

@ -70,7 +70,10 @@ int main(int argc, char* argv[])
save_image(image, dest);
} catch(exploder_failure err) {
std::cerr << "Failed: " << err.message << "\n";
return 1;
}
return 0;
}