diff options
Diffstat (limited to 'test/test_shell.c')
-rw-r--r-- | test/test_shell.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/test_shell.c b/test/test_shell.c index 866ae5f..c26e545 100644 --- a/test/test_shell.c +++ b/test/test_shell.c @@ -99,8 +99,9 @@ main(int argc, char *argv[]) for (i = 0; i < ARRAY_SIZE(test_shell_cmds); i++) { ret = shell_cmd_register(&test_shell_cmds[i]); - if (ret) + if (ret) { error_die(ret); + } } setbuf(stdin, NULL); |