]> Git Repo - u-boot.git/commitdiff
env: correct sign for error code
author[email protected] <[email protected]>
Mon, 8 May 2017 17:30:58 +0000 (19:30 +0200)
committerTom Rini <[email protected]>
Fri, 12 May 2017 12:37:16 +0000 (08:37 -0400)
Error codes should be negative.

Signed-off-by: Heinrich Schuchardt <[email protected]>
common/env_attr.c

index 5bfe5e3a89f02f83d74bfc957f99c97cce82d498..386219087b8cff46d0e321bdda456d8ee5ef0924 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;
This page took 0.035928 seconds and 4 git commands to generate.