projects
/
oweals
/
u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
878d885
)
env: correct sign for error code
author
xypron.glpk@gmx.de
<xypron.glpk@gmx.de>
Mon, 8 May 2017 17:30:58 +0000
(19:30 +0200)
committer
Tom 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
patch
|
blob
|
history
diff --git
a/common/env_attr.c
b/common/env_attr.c
index 5bfe5e3a89f02f83d74bfc957f99c97cce82d498..386219087b8cff46d0e321bdda456d8ee5ef0924 100644
(file)
--- 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;