diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 1998-07-14 14:26:19 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 1998-07-14 14:26:19 +0000 |
commit | b07fc493cfb9963d388c663d226dca2f95f31b7c (patch) | |
tree | 95beebe4ec103d551029c00f8a9fb804b6ae87a3 /sys/lib/libsa/exec.c | |
parent | dee6404bcf0407a3008c009628dd9acc135c6345 (diff) |
struct exec members are not long any more
Diffstat (limited to 'sys/lib/libsa/exec.c')
-rw-r--r-- | sys/lib/libsa/exec.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/lib/libsa/exec.c b/sys/lib/libsa/exec.c index a6ce11dd83e..498d6fdcc1b 100644 --- a/sys/lib/libsa/exec.c +++ b/sys/lib/libsa/exec.c @@ -1,4 +1,4 @@ -/* $OpenBSD: exec.c,v 1.21 1998/04/27 18:38:25 millert Exp $ */ +/* $OpenBSD: exec.c,v 1.22 1998/07/14 14:26:18 mickey Exp $ */ /* $NetBSD: exec.c,v 1.15 1996/10/13 02:29:01 christos Exp $ */ /*- @@ -80,7 +80,7 @@ exec(path, loadaddr, howto) } #ifdef EXEC_DEBUG - printf("\nstruct exec {%lx, %lx, %lx, %lx, %lx, %lx, %lx, %lx}\n", + printf("\nstruct exec {%x, %x, %x, %x, %x, %x, %x, %x}\n", x.a_midmag, x.a_text, x.a_data, x.a_bss, x.a_syms, x.a_entry, x.a_trsize, x.a_drsize); #endif |