Rephrase 2 lines so they conform with the style

This commit is contained in:
Jean Flach 2015-01-21 16:36:30 +01:00
parent b0483490c8
commit 5df5c1bf70
1 changed files with 2 additions and 2 deletions

View File

@ -273,13 +273,13 @@ int Main(void)
catch (win32_error &ex) {
if (int const * err = boost::get_error_info<errinfo_win32_error>(ex)) {
Log(LogCritical, "icinga-app", "Could not load library \"" + libraryName + "\"");
exit(EXIT_FAILURE);
return EXIT_FAILURE;
}
}
#else /*_WIN32*/
catch (std::runtime_error &ex) {
Log(LogCritical, "icinga-app", "Could not load library \"" + libraryName + "\"");
exit(EXIT_FAILURE);
return EXIT_FAILURE;
}
#endif /*_WIN32*/
}