From 71d84d1ad6047d5d24cc6c74d7b1493e8a995f74 Mon Sep 17 00:00:00 2001 From: Andre Noll Date: Sun, 16 Apr 2017 13:25:10 +0200 Subject: [PATCH] Don't shadow cmdline_parser_params in main(). This avoids dss.c:1519:32: warning: declaration of 'params' shadows a previous local [-Wshadow] The warning is harmless, though. --- dss.c | 1 - 1 file changed, 1 deletion(-) diff --git a/dss.c b/dss.c index 4c068c6..aa8c0ea 100644 --- a/dss.c +++ b/dss.c @@ -1516,7 +1516,6 @@ int main(int argc, char **argv) * Parse the command line options again, but this time check * that all required options are given. */ - struct cmdline_parser_params params; params.override = 1; params.initialize = 1; params.check_required = 1; -- 2.39.2