diff options
| author | 1998-07-14 14:26:18 +0000 | |
|---|---|---|
| committer | 1998-07-14 14:26:18 +0000 | |
| commit | ffb20d5c4621a6af0ecb9a7b1c96e57e41730460 (patch) | |
| tree | e0387d074f3ea088fa9ddb84dc3e0a5d818c3b77 /sys/lib/libsa/exec.c | |
| parent | Use AudioEmulaw string and set precision & flags (diff) | |
| download | wireguard-openbsd-ffb20d5c4621a6af0ecb9a7b1c96e57e41730460.tar.xz wireguard-openbsd-ffb20d5c4621a6af0ecb9a7b1c96e57e41730460.zip | |
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 |
