diff options
author | Eric Andersen <andersen@codepoet.org> | 2002-04-03 09:15:47 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2002-04-03 09:15:47 +0000 |
commit | e4e736519d45d7ffbba30611ed3a5d27187711ed (patch) | |
tree | 1d15c2778f9ef89a7f2d744335c9674b691d390b /ldso | |
parent | 9f82e5e79a9a63e121c03858df9910724d78c6ea (diff) |
Steven's patch contained a spare SEND_NUMBER_STDERR call that was
spamming us. Kill that. My bad for not spotting that when merging.
-Erik
Diffstat (limited to 'ldso')
-rw-r--r-- | ldso/ldso/ldso.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ldso/ldso/ldso.c b/ldso/ldso/ldso.c index 3a479caf5..2674ca429 100644 --- a/ldso/ldso/ldso.c +++ b/ldso/ldso/ldso.c @@ -524,7 +524,7 @@ DL_BOOT(unsigned long args) if (!_dl_symbol(strtab + symtab[symtab_index].st_name)) continue; symbol_addr = load_addr + symtab[symtab_index].st_value; - SEND_NUMBER_STDERR(symbol_addr,1); + //SEND_NUMBER_STDERR(symbol_addr,1); if (!symbol_addr) { /* This will segfault - you cannot call a function until |