summaryrefslogtreecommitdiff
path: root/include/command.h
diff options
context:
space:
mode:
authorHeinrich Schuchardt <xypron.glpk@gmx.de>2018-10-12 11:23:04 +0200
committerTom Rini <trini@konsulko.com>2018-10-19 19:19:53 -0400
commit8a3d734b1b7b613f9fd1b66b2e66d19bff4bab9d (patch)
tree83ce466feb8b67a9f3cfdabf3522982824fefa5b /include/command.h
parent2fe88d452268d61b5ca9cb0b1dda2974cc43faeb (diff)
common: command: fix typo
%s/CMD_RET_SUCCESX/CMD_RET_SUCCESS/g Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Diffstat (limited to 'include/command.h')
-rw-r--r--include/command.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/command.h b/include/command.h
index 5b1577f3b4..200c7a5e9f 100644
--- a/include/command.h
+++ b/include/command.h
@@ -67,7 +67,7 @@ extern int cmd_auto_complete(const char *const prompt, char *buf, int *np, int *
*
* @cmdtp: Command which caused the error
* @err: Error code (0 if none, -ve for error, like -EIO)
- * @return 0 (CMD_RET_SUCCESX) if there is not error,
+ * @return 0 (CMD_RET_SUCCESS) if there is not error,
* 1 (CMD_RET_FAILURE) if an error is found
* -1 (CMD_RET_USAGE) if 'usage' error is found
*/