changeset 1717:c12455fec611

Remove extra newlines in scr_LogPrint() calls
author Mikael Berthe <mikael@lilotux.net>
date Wed, 17 Feb 2010 19:08:55 +0100
parents d30fb41725fe
children e2c6f1357f82
files mcabber/mcabber/xmpp.c
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/mcabber/mcabber/xmpp.c	Wed Feb 17 19:07:50 2010 +0100
+++ b/mcabber/mcabber/xmpp.c	Wed Feb 17 19:08:55 2010 +0100
@@ -893,7 +893,7 @@
 
     if (!lm_connection_authenticate(lconnection, username, password, resource,
                                     connection_auth_cb, NULL, FALSE, &error)) {
-      scr_LogPrint(LPRINT_LOGNORM, "Failed to authenticate: %s\n",
+      scr_LogPrint(LPRINT_LOGNORM, "Failed to authenticate: %s",
                    error->message);
       g_error_free (error);
       _try_to_reconnect();
@@ -1786,7 +1786,7 @@
   if (!lm_connection_open(lconnection, connection_open_cb,
                           NULL, FALSE, &error)) {
     _try_to_reconnect();
-    scr_LogPrint(LPRINT_LOGNORM, "Failed to open: %s\n", error->message);
+    scr_LogPrint(LPRINT_LOGNORM, "Failed to open: %s", error->message);
     g_error_free (error);
   }
 }