mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 23:24:38 +00:00
env: correct sign for error code
Error codes should be negative. Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
This commit is contained in:
parent
878d885620
commit
9b57e252ff
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue