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-new-session.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-new-session.c')
-rw-r--r-- | usr.bin/tmux/cmd-new-session.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/tmux/cmd-new-session.c b/usr.bin/tmux/cmd-new-session.c index adba608fcf8..d85fd834196 100644 --- a/usr.bin/tmux/cmd-new-session.c +++ b/usr.bin/tmux/cmd-new-session.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cmd-new-session.c,v 1.19 2009/09/16 12:35:04 nicm Exp $ */ +/* $OpenBSD: cmd-new-session.c,v 1.20 2009/09/21 15:32:06 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -69,7 +69,7 @@ cmd_new_session_parse(struct cmd *self, int argc, char **argv, char **cause) struct cmd_new_session_data *data; int opt; - self->entry->init(self, 0); + self->entry->init(self, KEYC_NONE); data = self->data; while ((opt = getopt(argc, argv, "ds:n:")) != -1) { |