void functions shouldn't 'return'. Thanks tmcmahon2. Fixes #3151 (gntconv.c fails to compile in Solaris 9)

Sat, 29 Sep 2007 20:49:34 +0000

author
Sadrul Habib Chowdhury <sadrul@pidgin.im>
date
Sat, 29 Sep 2007 20:49:34 +0000
changeset 20780
c48390a2851d
parent 20779
e99a67e3010b
child 20781
44dc0b8b9a58
child 20783
b36dfff92590
child 20784
e36de154f187

void functions shouldn't 'return'. Thanks tmcmahon2. Fixes #3151 (gntconv.c fails to compile in Solaris 9)

finch/gntconv.c file | annotate | diff | comparison | revisions
--- a/finch/gntconv.c	Sat Sep 29 20:13:51 2007 +0000
+++ b/finch/gntconv.c	Sat Sep 29 20:49:34 2007 +0000
@@ -959,7 +959,7 @@
 {
 	FinchConv *fc = FINCH_CONV(conv);
 	if (fc && fc->window)
-		return gnt_window_present(fc->window);
+		gnt_window_present(fc->window);
 }
 
 static gboolean

mercurial