diff src/gtknotify.c @ 7386:414c701ef1ff

[gaim-migrate @ 7981] Code cleanup to get rid of all warnings for AMD64 from augustus at linuxhardware dot org committer: Tailor Script <tailor@pidgin.im>
author Luke Schierer <lschiere@pidgin.im>
date Thu, 30 Oct 2003 22:27:36 +0000
parents 2b99c950b817
children 9ab1987e5d8b
line wrap: on
line diff
--- a/src/gtknotify.c	Thu Oct 30 21:55:29 2003 +0000
+++ b/src/gtknotify.c	Thu Oct 30 22:27:36 2003 +0000
@@ -206,8 +206,8 @@
 
 	/* Descriptive label */
 	detail_text = g_strdup_printf(
-		ngettext("%s has %d new message.", "%s has %d new messages.", count),
-		*tos, count);
+		ngettext("%s has %d new message.", "%s has %d new messages.", (int) count),
+		*tos, (int) count);
 
 	if (count == 1) {
 		char *from_text = NULL, *subject_text = NULL;