--- a/libpurple/plugins/signals-test.c Tue Oct 07 00:57:07 2014 +0530 +++ b/libpurple/plugins/signals-test.c Wed Nov 26 16:01:25 2014 +0530 @@ -620,10 +620,10 @@ static void notify_emails_cb(char **subjects, char **froms, char **tos, char **urls, guint count) { guint i; - purple_debug_misc("signals test", "notify emails: count=%d\n", count); + purple_debug_misc("signals test", "notify emails: count=%u\n", count); for(i=0; i<count && i<5; i++) { if(subjects[i]==NULL || froms[i]==NULL || tos[i]==NULL || urls[i]==NULL) continue; - purple_debug_misc("signals test", "notify emails[%d]: subject=%s, from=%s, to=%s, url=%s\n", + purple_debug_misc("signals test", "notify emails[%u]: subject=%s, from=%s, to=%s, url=%s\n", i, subjects[i], froms[i], tos[i], urls[i]); } }