Commit b286cb8e authored by Richard Levitte's avatar Richard Levitte
Browse files

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



Reviewed-by: default avatarRich Salz <rsalz@openssl.org>
parent e3d81858
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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