Wed, 30 May 2007 06:34:04 +0000
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