diff options
author | Federico G. Schwindt <fgsch@cvs.openbsd.org> | 2002-02-26 06:26:39 +0000 |
---|---|---|
committer | Federico G. Schwindt <fgsch@cvs.openbsd.org> | 2002-02-26 06:26:39 +0000 |
commit | 65583a8e59b50c7e450aef00218173b3ff749335 (patch) | |
tree | d0c46b5475414a0c42c614fec604c358d6fb3bab /gnu/usr.bin | |
parent | ce01154703131e07932cfa6555d87acfae3ea831 (diff) |
fix errx(3) arg.
Diffstat (limited to 'gnu/usr.bin')
-rw-r--r-- | gnu/usr.bin/ld/ld.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/usr.bin/ld/ld.c b/gnu/usr.bin/ld/ld.c index 9fb3f621eaa..03800d9ba40 100644 --- a/gnu/usr.bin/ld/ld.c +++ b/gnu/usr.bin/ld/ld.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ld.c,v 1.19 2001/10/30 16:47:32 deraadt Exp $ */ +/* $OpenBSD: ld.c,v 1.20 2002/02/26 06:26:38 fgsch Exp $ */ /* $NetBSD: ld.c,v 1.52 1998/02/20 03:12:51 jonathan Exp $ */ /*- @@ -3660,7 +3660,7 @@ printf("writesym(#%d): %s, type %x\n", syms_written, sp->name, sp->defined); if (symtab_offset + symtab_len != strtab_offset) errx(1, - "internal error: inconsistent symbol table length: %d vs %s", + "internal error: inconsistent symbol table length: %d vs %d", symtab_offset + symtab_len, strtab_offset); if (fseek(outstream, strtab_offset, SEEK_SET) != 0) |