From 4143cf285cce27e7737c1af3d841b3b2473e7b4e Mon Sep 17 00:00:00 2001 From: Matthias Andree Date: Mon, 4 May 2009 22:07:36 +0000 Subject: Quench GCC complaint about unused system() return value. svn path=/branches/BRANCH_6-3/; revision=5292 --- fetchmail.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 */ -- cgit v1.2.3