Appended a newline to an error message so the stderr doesn't get "messy".

This commit is contained in:
Ignacio R. Morelle 2009-07-29 09:27:38 +00:00
parent 21c31b5bea
commit 978cdc7b94

View file

@ -1085,7 +1085,7 @@ void game_display::send_notification(const std::string& /*owner*/, const std::st
args.append(5000);
QDBusMessage result = notify.callWithArgumentList(QDBus::Block, "Notify", args);
if(result.type() == QDBusMessage::ErrorMessage) {
ERR_DP << "Failed to send a KDE notification with DBus: " << result.errorMessage().toLocal8Bit().data();
ERR_DP << "Failed to send a KDE notification with DBus: " << result.errorMessage().toLocal8Bit().data() << '\n';
}
#endif