From 7b97934bf9a5b4b52a82ab6631d6255a5c93b0a1 Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Wed, 28 Feb 2001 15:24:30 +0000 Subject: Update. 2001-02-28 Ulrich Drepper * sysdeps/alpha/dl-machine.h (elf_machine_rela): Don't handle relocations which are not in ld.so if RTLD_BOOTSTRAP is defined. * sysdeps/powerpc/dl-machine.c (__process_machine_rela): Fix typo. * elf/dl-misc.c (_dl_debug_vdprintf): Fix type visible on 64-bit machines. * sysdeps/unix/sysv/linux/powerpc/sysdep.h (C_TEXT): Define. --- elf/dl-misc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'elf/dl-misc.c') diff --git a/elf/dl-misc.c b/elf/dl-misc.c index 69b714f76c..4d8f85aafb 100644 --- a/elf/dl-misc.c +++ b/elf/dl-misc.c @@ -181,7 +181,7 @@ _dl_debug_vdprintf (int fd, int tag_p, const char *fmt, va_list arg) different size. */ #if LONG_MAX != INT_MAX unsigned long int num = (long_mod - ? va_arg (arg, unsigned long int); + ? va_arg (arg, unsigned long int) : va_arg (arg, unsigned int)); #else unsigned long int num = va_arg (arg, unsigned int); -- cgit 1.4.1