summaryrefslogtreecommitdiff
path: root/include/command.h
diff options
context:
space:
mode:
authorLeo C2014-10-23 13:07:27 +0200
committerLeo C2014-10-23 13:07:27 +0200
commit889202c46ced1be4fc0db3faf63564722eba2865 (patch)
tree59b44dba123e04f45fd02be22674269fc3f1e56d /include/command.h
parent89adce76dd02f2076ec6de1c6b434bc1f29512f4 (diff)
downloadz180-stamp-889202c46ced1be4fc0db3faf63564722eba2865.zip
include cleanup
Diffstat (limited to 'include/command.h')
-rw-r--r--include/command.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/command.h b/include/command.h
index 2fd20a0..d0933a0 100644
--- a/include/command.h
+++ b/include/command.h
@@ -26,8 +26,8 @@
* cmd_usage() all over the place.
*/
typedef enum {
- CMD_RET_SUCCESS, /* 0 = Success */
- CMD_RET_FAILURE, /* 1 = Failure */
+ CMD_RET_SUCCESS = 0, /* Success */
+ CMD_RET_FAILURE = 1, /* Failure */
CMD_RET_USAGE = -1, /* Failure, please report 'usage' error */
} command_ret_t;