]> cloudbase.mooo.com Git - z180-stamp.git/blobdiff - include/command.h
cleanup
[z180-stamp.git] / include / command.h
index 2fd20a0b4855382fb5d08911a123237d5c19e379..d0933a0b8fc8e73a16cd1c8322968bfe5f8eb584 100644 (file)
@@ -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;