]> Pileus Git - ~andy/fetchmail/commitdiff
quench warnings about unused arguments
authorMatthias Andree <matthias.andree@gmx.de>
Sun, 29 Jul 2007 09:18:19 +0000 (09:18 -0000)
committerMatthias Andree <matthias.andree@gmx.de>
Sun, 29 Jul 2007 09:18:19 +0000 (09:18 -0000)
svn path=/branches/BRANCH_6-3/; revision=5118

unmime.c

index 0af0e2c516dc32fc801ac0812ad76494c40da8c8..a518da2c0b36d9e7d221a5fbe2bea630432e3a96 100644 (file)
--- a/unmime.c
+++ b/unmime.c
@@ -668,6 +668,10 @@ int main(int argc, char *argv[])
   char *buffer, *buf_p;
   int nl_count, i, bodytype;
 
+  /* quench warnings about unused arguments */
+  (void)argc;
+  (void)argv;
+
 #ifdef DEBUG
   pid_t pid;
   FILE *fd_orig, *fd_conv;