summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorMiod Vallat <miod@cvs.openbsd.org>2008-03-31 19:58:11 +0000
committerMiod Vallat <miod@cvs.openbsd.org>2008-03-31 19:58:11 +0000
commitc7765a3d7fab8b1fc3febf3f78c92a458b7a20fc (patch)
tree837949b2a34d10c2c99494f43d29a7cbf2b30b84 /sys
parenta1f85281c0948a550c3f4ae5ec2a2cf0a88e92bb (diff)
Fix format strings in a.out loader.
Diffstat (limited to 'sys')
-rw-r--r--sys/lib/libsa/loadfile.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/sys/lib/libsa/loadfile.c b/sys/lib/libsa/loadfile.c
index 026b57334da..19aa630cb31 100644
--- a/sys/lib/libsa/loadfile.c
+++ b/sys/lib/libsa/loadfile.c
@@ -1,5 +1,5 @@
/* $NetBSD: loadfile.c,v 1.10 2000/12/03 02:53:04 tsutsui Exp $ */
-/* $OpenBSD: loadfile.c,v 1.15 2008/03/30 19:31:44 miod Exp $ */
+/* $OpenBSD: loadfile.c,v 1.16 2008/03/31 19:58:10 miod Exp $ */
/*-
* Copyright (c) 1997 The NetBSD Foundation, Inc.
@@ -319,7 +319,7 @@ aout_exec(int fd, struct exec *x, u_long *marks, int flags)
* Read in the text segment.
*/
if (flags & LOAD_TEXT) {
- PROGRESS(("%ld", x->a_text));
+ PROGRESS(("%d", x->a_text));
if (READ(fd, maxp, x->a_text - sub) != x->a_text - sub) {
WARN(("read text"));
@@ -353,7 +353,7 @@ aout_exec(int fd, struct exec *x, u_long *marks, int flags)
* Read in the data segment.
*/
if (flags & LOAD_DATA) {
- PROGRESS(("+%ld", x->a_data));
+ PROGRESS(("+%d", x->a_data));
if (READ(fd, maxp, x->a_data) != x->a_data) {
WARN(("read data"));
@@ -374,7 +374,7 @@ aout_exec(int fd, struct exec *x, u_long *marks, int flags)
* (Kernel doesn't care, but do it anyway.)
*/
if (flags & LOAD_BSS) {
- PROGRESS(("+%ld", x->a_bss));
+ PROGRESS(("+%d", x->a_bss));
BZERO(maxp, x->a_bss);
}
@@ -398,7 +398,7 @@ aout_exec(int fd, struct exec *x, u_long *marks, int flags)
/* Symbol table and string table length word. */
if (flags & LOAD_SYM) {
- PROGRESS(("+[%ld", x->a_syms));
+ PROGRESS(("+[%d", x->a_syms));
if (READ(fd, maxp, x->a_syms) != x->a_syms) {
WARN(("read symbols"));