env: correct sign for error code
authorxypron.glpk@gmx.de <xypron.glpk@gmx.de>
Mon, 8 May 2017 17:30:58 +0000 (19:30 +0200)
committerTom Rini <trini@konsulko.com>
Fri, 12 May 2017 12:37:16 +0000 (08:37 -0400)
Error codes should be negative.

Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
common/env_attr.c

index 5bfe5e3..3862190 100644 (file)
@@ -153,7 +153,7 @@ static int regex_callback(const char *name, const char *attributes, void *priv)
                }
        } else {
                printf("Error compiling regex: %s\n", slre.err_str);
-               retval = EINVAL;
+               retval = -EINVAL;
        }
 done:
        return retval;