diff options
author | Matthias Andree <matthias.andree@gmx.de> | 2009-05-04 22:07:36 +0000 |
---|---|---|
committer | Matthias Andree <matthias.andree@gmx.de> | 2009-05-04 22:07:36 +0000 |
commit | 4143cf285cce27e7737c1af3d841b3b2473e7b4e (patch) | |
tree | 96885d8c03f5527a5f24932b3e675989b5b513a4 | |
parent | 1cecbe2bc1a9f8b939facb007c6551fb77b1048a (diff) | |
download | fetchmail-4143cf285cce27e7737c1af3d841b3b2473e7b4e.tar.gz fetchmail-4143cf285cce27e7737c1af3d841b3b2473e7b4e.tar.bz2 fetchmail-4143cf285cce27e7737c1af3d841b3b2473e7b4e.zip |
Quench GCC complaint about unused system() return value.
svn path=/branches/BRANCH_6-3/; revision=5292
-rw-r--r-- | fetchmail.c | 2 |
1 files changed, 1 insertions, 1 deletions
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 */ |