summaryrefslogtreecommitdiff
path: root/usr.sbin/mopd/mopa.out
diff options
context:
space:
mode:
authorAnil Madhavapeddy <avsm@cvs.openbsd.org>2003-04-13 22:39:39 +0000
committerAnil Madhavapeddy <avsm@cvs.openbsd.org>2003-04-13 22:39:39 +0000
commitb4b127bb0c079ab9da36401568dc32f675545ed4 (patch)
tree5daf7acaa5c9679d7f8f883c9398c6fa67bd2c2b /usr.sbin/mopd/mopa.out
parent781706bf63120e9943b4dc2618bdf767d9f40bd0 (diff)
obvious typo: "s%" -> "%s" in format string
Diffstat (limited to 'usr.sbin/mopd/mopa.out')
-rw-r--r--usr.sbin/mopd/mopa.out/mopa.out.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/mopd/mopa.out/mopa.out.c b/usr.sbin/mopd/mopa.out/mopa.out.c
index ce9250d82fe..9bfd18277f0 100644
--- a/usr.sbin/mopd/mopa.out/mopa.out.c
+++ b/usr.sbin/mopd/mopa.out/mopa.out.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: mopa.out.c,v 1.4 2002/06/14 21:35:01 todd Exp $ */
+/* $OpenBSD: mopa.out.c,v 1.5 2003/04/13 22:39:38 avsm Exp $ */
/* mopa.out - Convert a Unix format kernel into something that
* can be transferred via MOP.
@@ -48,7 +48,7 @@
*/
#ifndef LINT
-static char rcsid[] = "$OpenBSD: mopa.out.c,v 1.4 2002/06/14 21:35:01 todd Exp $";
+static char rcsid[] = "$OpenBSD: mopa.out.c,v 1.5 2003/04/13 22:39:38 avsm Exp $";
#endif
#include "os.h"
@@ -104,7 +104,7 @@ main (int argc, char **argv)
&dl.a_bss ,&dl.a_bss_fill );
if (dl.aout == -1) {
- fprintf(stderr,"s%: not an a.out file\n",argv[1]);
+ fprintf(stderr,"%s: not an a.out file\n",argv[1]);
return (3);
}