summaryrefslogtreecommitdiff
path: root/lib/Main.cc
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Main.cc')
-rw-r--r--lib/Main.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Main.cc b/lib/Main.cc
index 774cf08..64cdc7d 100644
--- a/lib/Main.cc
+++ b/lib/Main.cc
@@ -31,12 +31,12 @@ int main(int argc, char ** argv, char ** enve) {
r = e.GetCode();
}
catch (GeneralException e) {
- printm(M_ERROR, "The application caused an exception: %s\n", e.GetMsg());
+ Base::printm(M_ERROR, "The application caused an exception: %s\n", e.GetMsg());
delete Application;
exit(-1);
}
catch (...) {
- printm(M_ERROR, "The application caused an unknow exception\n");
+ Base::printm(M_ERROR, "The application caused an unknow exception\n");
delete Application;
exit(-1);
}