Another change from o_sukhodolsky

Wed, 30 May 2007 05:32:49 +0000

author
Richard Laager <rlaager@pidgin.im>
date
Wed, 30 May 2007 05:32:49 +0000
changeset 17463
5be75bf3b58b
parent 17462
593f36ca27bc
child 17467
f1b35aaa19d8

Another change from o_sukhodolsky

Fix this warning:
tcl_signals.c: In function 'tcl_signal_handler_free':
tcl_signals.c:51: warning: suggest explicit braces to avoid ambiguous 'else'

References #1344

libpurple/plugins/tcl/tcl_signals.c file | annotate | diff | comparison | revisions
--- a/libpurple/plugins/tcl/tcl_signals.c	Wed May 30 03:17:56 2007 +0000
+++ b/libpurple/plugins/tcl/tcl_signals.c	Wed May 30 05:32:49 2007 +0000
@@ -49,7 +49,9 @@
 
 	Tcl_DecrRefCount(handler->signal);
 	if (handler->namespace)
+	{
 		Tcl_DecrRefCount(handler->namespace);
+	}
 	g_free(handler);
 }
 

mercurial