From: Richard Levitte Date: Sat, 2 Apr 2016 17:59:19 +0000 (+0200) Subject: apps/opt.c: next was only used when NDEBUG undefined, move it inside guard X-Git-Tag: OpenSSL_1_1_0-pre5~170 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=b286cb8eac308b2f2350d01b8b0ccb63909a2e47;p=oweals%2Fopenssl.git apps/opt.c: next was only used when NDEBUG undefined, move it inside guard Reviewed-by: Rich Salz --- diff --git a/apps/opt.c b/apps/opt.c index f4eba2dca0..af994bb743 100644 --- a/apps/opt.c +++ b/apps/opt.c @@ -163,8 +163,8 @@ char *opt_init(int ac, char **av, const OPTIONS *o) unknown = NULL; for (; o->name; ++o) { - const OPTIONS *next; #ifndef NDEBUG + const OPTIONS *next; int duplicated, i; #endif