diff options
author | 2009-09-21 15:32:06 +0000 | |
---|---|---|
committer | 2009-09-21 15:32:06 +0000 | |
commit | dcab69801ca2ee70a610d3fcbf5d65d2a7568915 (patch) | |
tree | 285d0b5ad93b1c2aaa95b5049af0efa9e879340c /usr.bin/tmux/cmd-split-window.c | |
parent | Nuke -i option which isn't used anymore. (diff) | |
download | wireguard-openbsd-dcab69801ca2ee70a610d3fcbf5d65d2a7568915.tar.xz wireguard-openbsd-dcab69801ca2ee70a610d3fcbf5d65d2a7568915.zip |
Use KEYC_NONE constant instead of 0 on init.
Diffstat (limited to 'usr.bin/tmux/cmd-split-window.c')
-rw-r--r-- | usr.bin/tmux/cmd-split-window.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/tmux/cmd-split-window.c b/usr.bin/tmux/cmd-split-window.c index b2ab049f4f0..e452195bfee 100644 --- a/usr.bin/tmux/cmd-split-window.c +++ b/usr.bin/tmux/cmd-split-window.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cmd-split-window.c,v 1.12 2009/09/16 12:35:04 nicm Exp $ */ +/* $OpenBSD: cmd-split-window.c,v 1.13 2009/09/21 15:32:06 nicm Exp $ */ /* * Copyright (c) 2009 Nicholas Marriott <nicm@users.sourceforge.net> @@ -84,7 +84,7 @@ cmd_split_window_parse(struct cmd *self, int argc, char **argv, char **cause) int opt; const char *errstr; - self->entry->init(self, 0); + self->entry->init(self, KEYC_NONE); data = self->data; while ((opt = getopt(argc, argv, "dhl:p:t:v")) != -1) { |