summaryrefslogtreecommitdiffstats
path: root/usr.bin/tmux/cmd-copy-buffer.c
diff options
context:
space:
mode:
authornicm <nicm@openbsd.org>2009-09-21 15:32:06 +0000
committernicm <nicm@openbsd.org>2009-09-21 15:32:06 +0000
commitdcab69801ca2ee70a610d3fcbf5d65d2a7568915 (patch)
tree285d0b5ad93b1c2aaa95b5049af0efa9e879340c /usr.bin/tmux/cmd-copy-buffer.c
parentNuke -i option which isn't used anymore. (diff)
downloadwireguard-openbsd-dcab69801ca2ee70a610d3fcbf5d65d2a7568915.tar.xz
wireguard-openbsd-dcab69801ca2ee70a610d3fcbf5d65d2a7568915.zip
Use KEYC_NONE constant instead of 0 on init.
Diffstat (limited to 'usr.bin/tmux/cmd-copy-buffer.c')
-rw-r--r--usr.bin/tmux/cmd-copy-buffer.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/tmux/cmd-copy-buffer.c b/usr.bin/tmux/cmd-copy-buffer.c
index df27f46444e..6e93375afb0 100644
--- a/usr.bin/tmux/cmd-copy-buffer.c
+++ b/usr.bin/tmux/cmd-copy-buffer.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: cmd-copy-buffer.c,v 1.4 2009/09/07 18:50:45 nicm Exp $ */
+/* $OpenBSD: cmd-copy-buffer.c,v 1.5 2009/09/21 15:32:06 nicm Exp $ */
/*
* Copyright (c) 2009 Tiago Cunha <me@tiagocunha.org>
@@ -70,7 +70,7 @@ cmd_copy_buffer_parse(struct cmd *self, int argc, char **argv, char **cause)
const char *errstr;
int n, opt;
- self->entry->init(self, 0);
+ self->entry->init(self, KEYC_NONE);
data = self->data;
while ((opt = getopt(argc, argv, "a:b:s:t:")) != -1) {