Mercurial > pidgin.yaz
changeset 17473:678461486949
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
author | Richard Laager <rlaager@wiktel.com> |
---|---|
date | Wed, 30 May 2007 06:34:04 +0000 |
parents | a236c67e39b6 |
children | a02e2dbec8dd |
files | libpurple/plugins/perl/perl-common.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- 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