# HG changeset patch # User Mikael Berthe # Date 1266430135 -3600 # Node ID c12455fec611b91e12aeb42a0d50859051a71f99 # Parent d30fb41725fe99c578ec0260ce8b3268ac3916b0 Remove extra newlines in scr_LogPrint() calls diff -r d30fb41725fe -r c12455fec611 mcabber/mcabber/xmpp.c --- 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); } }