From bd22e54f65f260f5ea9591a1a60d1686e7dfd052 Mon Sep 17 00:00:00 2001 From: Joakim Tjernlund Date: Fri, 20 May 2005 22:04:11 +0000 Subject: Fix debug macros. --- ldso/include/dl-string.h | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) (limited to 'ldso/include/dl-string.h') diff --git a/ldso/include/dl-string.h b/ldso/include/dl-string.h index 0637a36e7..208bee977 100644 --- a/ldso/include/dl-string.h +++ b/ldso/include/dl-string.h @@ -272,7 +272,7 @@ static inline char *_dl_simple_ltoahex(char * local, unsigned long i) #if defined(mc68000) || defined(__arm__) || defined(__mips__) \ || defined(__sh__) || defined(__powerpc__) # define CONSTANT_STRING_GOT_FIXUP(X) \ - if ((X) < (const char *) load_addr) (X) += load_addr; + if ((X) < (const char *) load_addr) (X) += load_addr #else # define CONSTANT_STRING_GOT_FIXUP(X) #endif @@ -280,13 +280,14 @@ static inline char *_dl_simple_ltoahex(char * local, unsigned long i) #define SEND_STDERR(X) { \ const char *tmp1 = (X); \ - CONSTANT_STRING_GOT_FIXUP(tmp1) \ + CONSTANT_STRING_GOT_FIXUP(tmp1); \ _dl_write (2, tmp1, _dl_strlen(tmp1)); \ }; -#define SEND_ADDRESS_STDERR(X, add_a_newline) { \ +#define SEND_ADDRESS_STDERR(ADR, add_a_newline) { \ char tmp[26], v, *tmp2, *tmp1 = tmp; \ - CONSTANT_STRING_GOT_FIXUP(tmp1) \ + unsigned long X = (unsigned long)(ADR); \ + CONSTANT_STRING_GOT_FIXUP(tmp1); \ tmp2 = tmp1 + sizeof(tmp); \ *--tmp2 = '\0'; \ if (add_a_newline) *--tmp2 = '\n'; \ @@ -305,7 +306,7 @@ static inline char *_dl_simple_ltoahex(char * local, unsigned long i) #define SEND_NUMBER_STDERR(X, add_a_newline) { \ char tmp[26], v, *tmp2, *tmp1 = tmp; \ - CONSTANT_STRING_GOT_FIXUP(tmp1) \ + CONSTANT_STRING_GOT_FIXUP(tmp1); \ tmp2 = tmp1 + sizeof(tmp); \ *--tmp2 = '\0'; \ if (add_a_newline) *--tmp2 = '\n'; \ -- cgit v1.2.3