From dcab69801ca2ee70a610d3fcbf5d65d2a7568915 Mon Sep 17 00:00:00 2001 From: nicm Date: Mon, 21 Sep 2009 15:32:06 +0000 Subject: Use KEYC_NONE constant instead of 0 on init. --- usr.bin/tmux/cmd-source-file.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'usr.bin/tmux/cmd-source-file.c') diff --git a/usr.bin/tmux/cmd-source-file.c b/usr.bin/tmux/cmd-source-file.c index 89a21202299..a893010ca1a 100644 --- a/usr.bin/tmux/cmd-source-file.c +++ b/usr.bin/tmux/cmd-source-file.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cmd-source-file.c,v 1.4 2009/08/23 17:29:51 nicm Exp $ */ +/* $OpenBSD: cmd-source-file.c,v 1.5 2009/09/21 15:32:06 nicm Exp $ */ /* * Copyright (c) 2008 Tiago Cunha @@ -60,7 +60,7 @@ cmd_source_file_parse(struct cmd *self, int argc, char **argv, char **cause) struct cmd_source_file_data *data; int opt; - self->entry->init(self, 0); + self->entry->init(self, KEYC_NONE); data = self->data; while ((opt = getopt(argc, argv, "")) != -1) { -- cgit v1.2.3-59-g8ed1b