diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2009-07-15 17:50:11 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2009-07-15 17:50:11 +0000 |
commit | 222b8e67435e41869802d3becd4060e9f65f9c9f (patch) | |
tree | 5c83069dd56b20f4d5d1b9790e9aa5c50292d27f /cmd-command-prompt.c | |
parent | d6908dd9c2dcf4262632692ea554ff4fa4d99bee (diff) | |
download | rtmux-222b8e67435e41869802d3becd4060e9f65f9c9f.tar.gz rtmux-222b8e67435e41869802d3becd4060e9f65f9c9f.tar.bz2 rtmux-222b8e67435e41869802d3becd4060e9f65f9c9f.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-command-prompt.c')
-rw-r--r-- | cmd-command-prompt.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cmd-command-prompt.c b/cmd-command-prompt.c index 05d7b1f3..7dd5a2b9 100644 --- a/cmd-command-prompt.c +++ b/cmd-command-prompt.c @@ -1,4 +1,4 @@ -/* $Id: cmd-command-prompt.c,v 1.17 2009-07-14 06:43:32 nicm Exp $ */ +/* $Id: cmd-command-prompt.c,v 1.18 2009-07-15 17:50:11 nicm Exp $ */ /* * Copyright (c) 2008 Nicholas Marriott <nicm@users.sourceforge.net> @@ -150,7 +150,7 @@ cmd_command_prompt_callback(void *data, const char *s) if (cause == NULL) return (0); *cause = toupper((u_char) *cause); - status_message_set(c, cause); + status_message_set(c, "%s", cause); xfree(cause); cmdlist = NULL; } |