Tue, 10 Jul 2007 06:19:09 +0000
Return 0 to silence the following warning
eggtrayicon.c: In function ‘egg_tray_icon_send_message’:
eggtrayicon.c:546: warning: ‘return’ with no value, in function returning non-void
eggtrayicon.c:572: warning: this function may return with or without a value
Casey, is this change ok? It doesn't look like we ever call this function
| pidgin/eggtrayicon.c | file | annotate | diff | comparison | revisions |
--- a/pidgin/eggtrayicon.c Tue Jul 10 05:56:23 2007 +0000 +++ b/pidgin/eggtrayicon.c Tue Jul 10 06:19:09 2007 +0000 @@ -543,7 +543,7 @@ xdisplay = egg_tray_icon_get_x_display(icon); if (xdisplay == NULL) - return; + return 0; ev.type = ClientMessage; ev.window = (Window)gtk_plug_get_id (GTK_PLUG (icon));