From: Matthias Andree Date: Mon, 4 May 2009 22:07:36 +0000 (-0000) Subject: Quench GCC complaint about unused system() return value. X-Git-Url: http://pileus.org/git/?a=commitdiff_plain;h=4143cf285cce27e7737c1af3d841b3b2473e7b4e;p=~andy%2Ffetchmail Quench GCC complaint about unused system() return value. svn path=/branches/BRANCH_6-3/; revision=5292 --- diff --git a/fetchmail.c b/fetchmail.c index aff4877b..2832397a 100644 --- a/fetchmail.c +++ b/fetchmail.c @@ -292,7 +292,7 @@ int main(int argc, char **argv) fflush(stdout); /* this is an attempt to help remote debugging */ - system("uname -a"); + if (system("uname -a")) { /* NOOP to quench GCC complaint */ } } /* avoid parsing the config file if all we're doing is killing a daemon */