diff options
author | Nicholas Marriott <nicm@cvs.openbsd.org> | 2012-04-01 20:53:48 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@cvs.openbsd.org> | 2012-04-01 20:53:48 +0000 |
commit | 7b7c9157e56baf3d29177a21bec70de714fa4465 (patch) | |
tree | 8b2db4f4020d3f18c37ad518e172cbf716c1f16d /usr.bin/tmux/cmd-find-window.c | |
parent | 1183b5668486030468b98e11c4abe0d054829223 (diff) |
Minor style nits - return ().
Diffstat (limited to 'usr.bin/tmux/cmd-find-window.c')
-rw-r--r-- | usr.bin/tmux/cmd-find-window.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/tmux/cmd-find-window.c b/usr.bin/tmux/cmd-find-window.c index 34d1b97d222..a8655623ca0 100644 --- a/usr.bin/tmux/cmd-find-window.c +++ b/usr.bin/tmux/cmd-find-window.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cmd-find-window.c,v 1.11 2012/04/01 08:10:56 nicm Exp $ */ +/* $OpenBSD: cmd-find-window.c,v 1.12 2012/04/01 20:53:47 nicm Exp $ */ /* * Copyright (c) 2009 Nicholas Marriott <nicm@users.sourceforge.net> @@ -75,7 +75,7 @@ cmd_find_window_match_flags(struct args *args) if (match_flags == 0) match_flags = CMD_FIND_WINDOW_ALL; - return match_flags; + return (match_flags); } int |