[PATCH 6/8] common/command.c: Replace magic number with appropriate constant
Andrey Smirnov
andrew.smirnov at gmail.com
Sun Oct 11 11:43:39 PDT 2015
Signed-off-by: Andrey Smirnov <andrew.smirnov at gmail.com>
---
common/command.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/common/command.c b/common/command.c
index dc2cb88..03c7083 100644
--- a/common/command.c
+++ b/common/command.c
@@ -83,7 +83,7 @@ int execute_command(int argc, char **argv)
#else
printf ("Unknown command '%s'\n", argv[0]);
#endif
- ret = 1; /* give up after bad command */
+ ret = COMMAND_ERROR; /* give up after bad command */
}
getopt_context_restore(&gc);
--
2.1.4
More information about the barebox
mailing list