From 5bba2cc0669d8c7f129ec6390c90cdff5d332a43 Mon Sep 17 00:00:00 2001 From: thorkill Date: Thu, 2 Jul 2015 21:42:44 +0200 Subject: [PATCH] Marked missing parameters in getopt.c on FreeBSD --- src/getopt.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/getopt.c b/src/getopt.c index d63887e5..abd00b86 100644 --- a/src/getopt.c +++ b/src/getopt.c @@ -445,7 +445,8 @@ _getopt_initialize (argc, argv, optstring) else nonoption_flags_len = 0; #endif - + UNUSED(argc); + UNUSED(argv); return optstring; }