diff -r 8e191599d715 -r 61d8c5197526 pidgin/gtknotify.c --- a/pidgin/gtknotify.c Sat Oct 13 23:26:48 2007 +0000 +++ b/pidgin/gtknotify.c Sat Oct 13 23:32:54 2007 +0000 @@ -270,8 +270,9 @@ primary_esc = g_markup_escape_text(primary, -1); secondary_esc = (secondary != NULL) ? g_markup_escape_text(secondary, -1) : NULL; g_snprintf(label_text, sizeof(label_text), - "%s\n\n%s", - primary_esc, (secondary ? secondary_esc : "")); + "%s%s%s", + primary_esc, (secondary ? "\n\n" : ""), + (secondary ? secondary_esc : "")); g_free(primary_esc); g_free(secondary_esc);