comparison 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
comparison
equal deleted inserted replaced
7385:79d74929693c 7386:414c701ef1ff
204 204
205 gtk_box_pack_start(GTK_BOX(hbox), vbox, FALSE, FALSE, 0); 205 gtk_box_pack_start(GTK_BOX(hbox), vbox, FALSE, FALSE, 0);
206 206
207 /* Descriptive label */ 207 /* Descriptive label */
208 detail_text = g_strdup_printf( 208 detail_text = g_strdup_printf(
209 ngettext("%s has %d new message.", "%s has %d new messages.", count), 209 ngettext("%s has %d new message.", "%s has %d new messages.", (int) count),
210 *tos, count); 210 *tos, (int) count);
211 211
212 if (count == 1) { 212 if (count == 1) {
213 char *from_text = NULL, *subject_text = NULL; 213 char *from_text = NULL, *subject_text = NULL;
214 214
215 if (froms != NULL) { 215 if (froms != NULL) {