summaryrefslogtreecommitdiffstats
path: root/cmd-source-file.c
diff options
context:
space:
mode:
authorNicholas Marriott <nicm@openbsd.org>2009-09-21 15:32:06 +0000
committerNicholas Marriott <nicm@openbsd.org>2009-09-21 15:32:06 +0000
commit6fab9a3e6f0a18ce63662fceedb87e96f2680d83 (patch)
tree7d0397075a14cb8b404ed0c53227f5540e1af82f /cmd-source-file.c
parenta44852442404fc466015a08e5de03fa552e5eb2c (diff)
Use KEYC_NONE constant instead of 0 on init.
Diffstat (limited to 'cmd-source-file.c')
-rw-r--r--cmd-source-file.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd-source-file.c b/cmd-source-file.c
index 247b06ec..2cb47c6e 100644
--- a/cmd-source-file.c
+++ b/cmd-source-file.c
@@ -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) {