apps/opt.c: next was only used when NDEBUG undefined, move it inside guard

Reviewed-by: Rich Salz <rsalz@openssl.org>
This commit is contained in:
Richard Levitte 2016-04-02 19:59:19 +02:00
parent e3d8185880
commit b286cb8eac

View File

@ -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