common: Don't add quotes to exit exceptions
[quassel.git] / src / common / main.cpp
index 7e235d0..0ee13ec 100644 (file)
@@ -254,7 +254,7 @@ int main(int argc, char **argv)
     }
     catch (ExitException e) {
         if (!e.errorString.isEmpty()) {
-            qCritical() << e.errorString;
+            qCritical() << qPrintable(e.errorString);
         }
         return e.exitCode;
     }