diff options
author | Theo Buehler <tb@cvs.openbsd.org> | 2023-04-14 15:34:09 +0000 |
---|---|---|
committer | Theo Buehler <tb@cvs.openbsd.org> | 2023-04-14 15:34:09 +0000 |
commit | e23b3b3acad0c410d641487946800f69419b6086 (patch) | |
tree | b5f0cab520ba315ed03ed290fe29201ffa3e860a | |
parent | 9df142025b2ee8908b3ab8d8546984b440cecee1 (diff) |
Add a missing void
-rw-r--r-- | usr.bin/mg/main.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/mg/main.c b/usr.bin/mg/main.c index b8eb798b2b5..d31c89b1d0b 100644 --- a/usr.bin/mg/main.c +++ b/usr.bin/mg/main.c @@ -1,4 +1,4 @@ -/* $OpenBSD: main.c,v 1.94 2023/03/30 19:01:25 op Exp $ */ +/* $OpenBSD: main.c,v 1.95 2023/04/14 15:34:08 tb Exp $ */ /* This file is in the public domain. */ @@ -51,7 +51,7 @@ extern char *__progname; extern void closetags(void); static __dead void -usage() +usage(void) { fprintf(stderr, "usage: %s [-nR] [-b file] [-f mode] [-u file] " "[+number] [file ...]\n", |