diff options
author | Nicholas Marriott <nicm@openbsd.org> | 2009-07-15 17:39:00 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@openbsd.org> | 2009-07-15 17:39:00 +0000 |
commit | 92da443a9e02a2238d4415e0dcf3796d3929b290 (patch) | |
tree | dba39ebf34f33d4d399e9dc73591e2a6668c8f07 /cmd-select-prompt.c | |
parent | 780fd8f7a6fde6f14016f3c4f94f04d8118859c1 (diff) | |
download | rtmux-92da443a9e02a2238d4415e0dcf3796d3929b290.tar.gz rtmux-92da443a9e02a2238d4415e0dcf3796d3929b290.tar.bz2 rtmux-92da443a9e02a2238d4415e0dcf3796d3929b290.zip |
Make status_message_set a variadic printf-like function. No functional change -
helpful for a couple of things coming soon.
Diffstat (limited to 'cmd-select-prompt.c')
-rw-r--r-- | cmd-select-prompt.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cmd-select-prompt.c b/cmd-select-prompt.c index 5221fa1e..8b707342 100644 --- a/cmd-select-prompt.c +++ b/cmd-select-prompt.c @@ -74,14 +74,14 @@ cmd_select_prompt_callback(void *data, const char *s) idx = strtonum(s, 0, UINT_MAX, &errstr); if (errstr != NULL) { xsnprintf(msg, sizeof msg, "Index %s: %s", errstr, s); - status_message_set(c, msg); + status_message_set(c, "%s", msg); return (0); } if (winlink_find_by_index(&c->session->windows, idx) == NULL) { xsnprintf(msg, sizeof msg, "Window not found: %s:%d", c->session->name, idx); - status_message_set(c, msg); + status_message_set(c, "%s", msg); return (0); } |