diff options
author | Eric Andersen <andersen@codepoet.org> | 2003-02-26 02:05:41 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2003-02-26 02:05:41 +0000 |
commit | 00a25ecaa0ba75454263efc7a977cf7a7b227c58 (patch) | |
tree | 7ae099b5fdf38e696224d510e8d1913f84cce1eb | |
parent | bcb41dd3739e3368c2d21f91d4c527b7475e21f0 (diff) |
Fixup a really stupid and terribly obvious bug that was causing
the shared lib loader on mips to puke...
-Erik
-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 11e8817c7..39c05e3b9 100644 --- a/ldso/ldso/ldso.c +++ b/ldso/ldso/ldso.c @@ -437,7 +437,7 @@ LD_BOOT(unsigned long args) #ifdef FORCE_SHAREABLE_TEXT_SEGMENTS dpnt->d_un.d_val = (unsigned long) debug_addr; #else - dpnt_debug = dpnt; + dpnt_debug = (unsigned long) debug_addr; #endif } if (dpnt->d_tag == DT_TEXTREL) |