From 94703cdfa91a42ec8da26792aaa832c572fcbab0 Mon Sep 17 00:00:00 2001 From: thorkill Date: Thu, 2 Jul 2015 21:48:15 +0200 Subject: [PATCH] getopt.c fixes for unitialized parameters on FreeBSD --- src/getopt.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/getopt.c b/src/getopt.c index d63887e5..35196b74 100644 --- a/src/getopt.c +++ b/src/getopt.c @@ -43,7 +43,6 @@ with this program; if not, write to the Free Software Foundation, Inc., #endif #include - #ifdef HAVE_STRING_H #include #endif @@ -445,7 +444,8 @@ _getopt_initialize (argc, argv, optstring) else nonoption_flags_len = 0; #endif - + (void)argc; + (void)argv; return optstring; }