A change from o_sukhodolsky:

Wed, 30 May 2007 06:34:04 +0000

author
Richard Laager <rlaager@pidgin.im>
date
Wed, 30 May 2007 06:34:04 +0000
changeset 17471
fcb31ec08595
parent 17470
8cba93978730
child 17472
9ca3ec3ae6c5

A change from o_sukhodolsky:

Fix this warning:
perl-common.c: In function 'execute_perl':
perl-common.c:208: warning: value computed is not used

References #1344

libpurple/plugins/perl/perl-common.c file | annotate | diff | comparison | revisions
--- a/libpurple/plugins/perl/perl-common.c	Wed May 30 06:25:46 2007 +0000
+++ b/libpurple/plugins/perl/perl-common.c	Wed May 30 06:34:04 2007 +0000
@@ -205,7 +205,7 @@
 		purple_debug(PURPLE_DEBUG_ERROR, "perl",
 				   "Perl function %s exited abnormally: %s\n",
 				   function, SvPV(ERRSV, na));
-		POPs;
+		(void)POPs;
 	} else if (count != 1) {
 		/*
 		 * This should NEVER happen.  G_SCALAR ensures that we WILL

mercurial