summaryrefslogtreecommitdiff
path: root/ldso/ldso/ld_hash.h
diff options
context:
space:
mode:
authorDavid Schleef <ds@schleef.org>2001-07-12 10:11:33 +0000
committerDavid Schleef <ds@schleef.org>2001-07-12 10:11:33 +0000
commit6e0b24b426c91b93f863a5187ce9e0577f00c4dd (patch)
tree6af1cfa79b7fc2fb799e87e317e3aff708f3354e /ldso/ldso/ld_hash.h
parentce8ee8d9b401c9c2828df3457815c2f4ceed4900 (diff)
Small fixups for powerpc
Diffstat (limited to 'ldso/ldso/ld_hash.h')
-rw-r--r--ldso/ldso/ld_hash.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/ldso/ldso/ld_hash.h b/ldso/ldso/ld_hash.h
index f38361090..1ee32672b 100644
--- a/ldso/ldso/ld_hash.h
+++ b/ldso/ldso/ld_hash.h
@@ -86,7 +86,7 @@ extern int _dl_linux_dynamic_link(void);
#define SEND_ADDRESS_STDERR(X, add_a_newline) { \
char tmp[13], *tmp1; \
_dl_memset_inline(tmp, 0, sizeof(tmp)); \
- tmp1=_dl_simple_ltoahex( tmp, (unsigned long)(X)); \
+ tmp1=_dl_simple_ltoahex_inline( tmp, (unsigned long)(X)); \
_dl_write(2, tmp1, _dl_strlen_inline(tmp1)); \
if (add_a_newline) { \
tmp[0]='\n'; \
@@ -97,7 +97,7 @@ extern int _dl_linux_dynamic_link(void);
#define SEND_NUMBER_STDERR(X, add_a_newline) { \
char tmp[13], *tmp1; \
_dl_memset_inline(tmp, 0, sizeof(tmp)); \
- tmp1=_dl_simple_ltoahex( tmp, (unsigned long)(X)); \
+ tmp1=_dl_simple_ltoahex_inline( tmp, (unsigned long)(X)); \
_dl_write(2, tmp1, _dl_strlen_inline(tmp1)); \
if (add_a_newline) { \
tmp[0]='\n'; \