diff options
author | nicm <nicm> | 2015-12-11 16:37:21 +0000 |
---|---|---|
committer | nicm <nicm> | 2015-12-11 16:37:21 +0000 |
commit | 88bc8f3528b973adb17f541e21aa415923a10f1e (patch) | |
tree | 9e89d6e82fc713a2991db723d12df9d28fa35b6c /status.c | |
parent | f2be3ad46fc37e5689d836f994fa79968d047133 (diff) | |
download | rtmux-88bc8f3528b973adb17f541e21aa415923a10f1e.tar.gz rtmux-88bc8f3528b973adb17f541e21aa415923a10f1e.tar.bz2 rtmux-88bc8f3528b973adb17f541e21aa415923a10f1e.zip |
Style nits and line wrapping of function declarations.
Diffstat (limited to 'status.c')
-rw-r--r-- | status.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1124,8 +1124,8 @@ status_prompt_key(struct client *c, key_code key) } if (c->prompt_flags & PROMPT_SINGLE) { - if (c->prompt_callbackfn( - c->prompt_data, c->prompt_buffer) == 0) + if (c->prompt_callbackfn(c->prompt_data, + c->prompt_buffer) == 0) status_prompt_clear(c); } |