summaryrefslogtreecommitdiff
path: root/sys/arch
diff options
context:
space:
mode:
authorMiod Vallat <miod@cvs.openbsd.org>2003-04-08 20:34:02 +0000
committerMiod Vallat <miod@cvs.openbsd.org>2003-04-08 20:34:02 +0000
commit50ff846cc1904cb63589fa5c2a1847972b0bd4d2 (patch)
tree4350971ce884056e9cf8a4bb6a77f9d0939d47c2 /sys/arch
parenta4b6205703df000f9ca8eb98a31bad1b3fb709d1 (diff)
Ahem, fix printf format.
Diffstat (limited to 'sys/arch')
-rw-r--r--sys/arch/sparc/stand/boot/loadfile.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/sparc/stand/boot/loadfile.c b/sys/arch/sparc/stand/boot/loadfile.c
index b1e669192fe..2853554cb94 100644
--- a/sys/arch/sparc/stand/boot/loadfile.c
+++ b/sys/arch/sparc/stand/boot/loadfile.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: loadfile.c,v 1.2 2003/03/18 05:11:57 miod Exp $ */
+/* $OpenBSD: loadfile.c,v 1.3 2003/04/08 20:34:01 miod Exp $ */
/* $NetBSD: loadfile.c,v 1.3 1997/04/06 08:40:59 cgd Exp $ */
/*
@@ -190,7 +190,7 @@ elf_seek(int fd, off_t relpos)
if (relpos < 0) {
#ifdef DEBUG
- printf("elf_seek: attempting to seek backwards from %lx bytes, "
+ printf("elf_seek: attempting to seek backwards from %llx bytes, "
"may fail!\n", -relpos);
#endif
if (lseek(fd, relpos, SEEK_CUR) < 0)