[PATCH 2/3] commands: readline: use exit code macros
Rouven Czerwinski
r.czerwinski at pengutronix.de
Wed Feb 10 06:58:08 EST 2021
Signed-off-by: Rouven Czerwinski <r.czerwinski at pengutronix.de>
---
commands/readline.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/commands/readline.c b/commands/readline.c
index 426f579ee4..796b4def95 100644
--- a/commands/readline.c
+++ b/commands/readline.c
@@ -16,13 +16,13 @@ static int do_readline(int argc, char *argv[])
if (readline(argv[1], buf, CONFIG_CBSIZE) < 0) {
free(buf);
- return 1;
+ return COMMAND_ERROR;
}
setenv(argv[2], buf);
free(buf);
- return 0;
+ return COMMAND_SUCCESS;
}
BAREBOX_CMD_HELP_START(readline)
--
2.30.0
More information about the barebox
mailing list