diff options
author | Thomas Adam <thomas@xteddy.org> | 2014-09-25 11:29:54 +0100 |
---|---|---|
committer | Thomas Adam <thomas@xteddy.org> | 2014-09-25 11:29:54 +0100 |
commit | 2874a431c050527244a56e7f241baf053c722f88 (patch) | |
tree | bfbd88ff749ef321ef2ba1b53f10246cc87ef85a /cmd-set-option.c | |
parent | 5e7f1b9f0a5bcff8f9ba410c17de4e822428614c (diff) | |
parent | 21062d74d5373699aad9fe8d77bd5312a33e9834 (diff) | |
download | rtmux-2874a431c050527244a56e7f241baf053c722f88.tar.gz rtmux-2874a431c050527244a56e7f241baf053c722f88.tar.bz2 rtmux-2874a431c050527244a56e7f241baf053c722f88.zip |
Merge branch 'obsd-master'
Diffstat (limited to 'cmd-set-option.c')
-rw-r--r-- | cmd-set-option.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cmd-set-option.c b/cmd-set-option.c index f55b0d30..22432b7d 100644 --- a/cmd-set-option.c +++ b/cmd-set-option.c @@ -201,7 +201,7 @@ cmd_set_option_exec(struct cmd *self, struct cmd_q *cmdq) /* Set user option. */ enum cmd_retval -cmd_set_option_user(struct cmd *self, struct cmd_q *cmdq, const char* optstr, +cmd_set_option_user(struct cmd *self, struct cmd_q *cmdq, const char *optstr, const char *valstr) { struct args *args = self->args; @@ -254,7 +254,7 @@ cmd_set_option_user(struct cmd *self, struct cmd_q *cmdq, const char* optstr, if (args_has(args, 'o') && options_find1(oo, optstr) != NULL) { if (!args_has(args, 'q')) { cmdq_error(cmdq, "already set: %s", optstr); - return CMD_RETURN_ERROR; + return (CMD_RETURN_ERROR); } return (CMD_RETURN_NORMAL); } |