From: xypron.glpk@gmx.de Date: Mon, 8 May 2017 17:30:58 +0000 (+0200) Subject: env: correct sign for error code X-Git-Tag: baikal/mips/sdk5.9~4931 X-Git-Url: https://git.baikalelectronics.ru/?a=commitdiff_plain;h=88e8136c43bf922943cd59650622875b772f8c9b;p=uboot.git env: correct sign for error code Error codes should be negative. Signed-off-by: Heinrich Schuchardt --- diff --git a/common/env_attr.c b/common/env_attr.c index 5bfe5e3a89..386219087b 100644 --- a/common/env_attr.c +++ b/common/env_attr.c @@ -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;