summaryrefslogtreecommitdiff
path: root/test/test_shell.c
diff options
context:
space:
mode:
authorRichard Braun <rbraun@sceen.net>2018-01-04 00:32:47 +0100
committerRichard Braun <rbraun@sceen.net>2018-01-04 00:32:47 +0100
commitc1ebfc97887a8efbd02b25379cc40d1086d0ad46 (patch)
treeee2d5ab7e529d90ee35940cb748b4ec270a19476 /test/test_shell.c
parenta0568115cdc9e6aa14820c5553f45f6ec701fb0c (diff)
error: replace error_die with error_check
Diffstat (limited to 'test/test_shell.c')
-rw-r--r--test/test_shell.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/test/test_shell.c b/test/test_shell.c
index 0b63ac0..ee81b20 100644
--- a/test/test_shell.c
+++ b/test/test_shell.c
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2015 Richard Braun.
+ * Copyright (c) 2015-2018 Richard Braun.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
@@ -95,10 +95,7 @@ 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) {
- error_die(ret);
- }
+ error_check(ret, "shell_cmd_register");
}
setbuf(stdin, NULL);