# HG changeset patch # User Elliott Sales de Andrade # Date 1316735379 0 # Node ID 7b6ab83622db683eae25829102d6b3e1ef2c8205 # Parent 64793e55488e8a0fd05d999cbbe93b4dc7bbb78d Add some missing newlines in debug output. diff -r 64793e55488e -r 7b6ab83622db pidgin/gtkconv-theme.c --- a/pidgin/gtkconv-theme.c Wed Sep 21 21:37:37 2011 +0000 +++ b/pidgin/gtkconv-theme.c Thu Sep 22 23:49:39 2011 +0000 @@ -310,7 +310,7 @@ file = g_build_filename(dir, "Contents", "Resources", "Topic.html", NULL); if (!g_file_get_contents(file, &priv->topic_html, NULL, NULL)) { - purple_debug_info("webkit", "%s could not find Resources/Topic.html", dir); + purple_debug_info("webkit", "%s could not find Resources/Topic.html\n", dir); priv->topic_html = g_strdup(""); } g_free(file); @@ -328,7 +328,7 @@ file = g_build_filename(dir, "Contents", "Resources", "Status.html", NULL); if (!g_file_get_contents(file, &priv->status_html, NULL, NULL)) { - purple_debug_info("webkit", "%s could not find Resources/Status.html", dir); + purple_debug_info("webkit", "%s could not find Resources/Status.html\n", dir); priv->status_html = g_strdup(""); } g_free(file);