diff options
author | Nicholas Marriott <nicm@cvs.openbsd.org> | 2015-12-11 16:37:22 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@cvs.openbsd.org> | 2015-12-11 16:37:22 +0000 |
commit | fd4f1262f42c8f61ecbb126dfbb7f3712b955d4b (patch) | |
tree | 9ba24f19b3a151c737fdd6330d95bb071d37007e /usr.bin/tmux/status.c | |
parent | a39537a15a525cd43a20066dda6b6bfd46526961 (diff) |
Style nits and line wrapping of function declarations.
Diffstat (limited to 'usr.bin/tmux/status.c')
-rw-r--r-- | usr.bin/tmux/status.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/tmux/status.c b/usr.bin/tmux/status.c index 092213239c5..6f1d897dead 100644 --- a/usr.bin/tmux/status.c +++ b/usr.bin/tmux/status.c @@ -1,4 +1,4 @@ -/* $OpenBSD: status.c,v 1.145 2015/12/11 12:27:36 nicm Exp $ */ +/* $OpenBSD: status.c,v 1.146 2015/12/11 16:37:21 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -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); } |