diff options
author | 2003-04-19 17:42:57 +0000 | |
---|---|---|
committer | 2003-04-19 17:42:57 +0000 | |
commit | 3427d9ea6bca5c30ad5e3d8b0c83849cf64c987f (patch) | |
tree | ca48bb58958c8da0ead30e15d779d0cc8106ae21 | |
parent | strcpy/strcat/sprintf removal; krw@ OK (diff) | |
download | wireguard-openbsd-3427d9ea6bca5c30ad5e3d8b0c83849cf64c987f.tar.xz wireguard-openbsd-3427d9ea6bca5c30ad5e3d8b0c83849cf64c987f.zip |
format string typo in usage (%d -> %s for program name)
-rw-r--r-- | usr.sbin/mopd/mopchk/mopchk.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/mopd/mopchk/mopchk.c b/usr.sbin/mopd/mopchk/mopchk.c index 83102a143ed..663229a8503 100644 --- a/usr.sbin/mopd/mopchk/mopchk.c +++ b/usr.sbin/mopd/mopchk/mopchk.c @@ -1,4 +1,4 @@ -/* $OpenBSD: mopchk.c,v 1.7 2002/06/10 21:05:25 maja Exp $ */ +/* $OpenBSD: mopchk.c,v 1.8 2003/04/19 17:42:57 avsm Exp $ */ /* * Copyright (c) 1995-96 Mats O Jansson. All rights reserved. @@ -30,7 +30,7 @@ */ #ifndef LINT -static char rcsid[] = "$OpenBSD: mopchk.c,v 1.7 2002/06/10 21:05:25 maja Exp $"; +static char rcsid[] = "$OpenBSD: mopchk.c,v 1.8 2003/04/19 17:42:57 avsm Exp $"; #endif /* @@ -158,7 +158,7 @@ main(argc, argv) void Usage() { - (void) fprintf(stderr, "usage: %d [-a] [-v] [filename...]\n",Program); + (void) fprintf(stderr, "usage: %s [-a] [-v] [filename...]\n",Program); exit(1); } |