From 5d693ae3e5516caf545f828a33d97b36c12024de Mon Sep 17 00:00:00 2001 From: Andreas Jaeger Date: Wed, 10 May 2000 10:20:09 +0000 Subject: [PATCH] Update. at proper place. Compute the high nibble correctly. --- ChangeLog | 2 +- elf/dl-reloc.c | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index 9e8aabb..eaabc81 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,7 +1,7 @@ 2000-05-10 Jakub Jelinek * elf/dl-reloc.c (_dl_reloc_bad_type): Write type into the message - at proper place. + at proper place. Compute the high nibble correctly. 2000-05-09 Jakub Jelinek diff --git a/elf/dl-reloc.c b/elf/dl-reloc.c index 8b67b46..3ee6f08 100644 --- a/elf/dl-reloc.c +++ b/elf/dl-reloc.c @@ -158,14 +158,14 @@ _dl_reloc_bad_type (struct link_map *map, uint_fast8_t type, int plt) if (plt) { char msg[] = "unexpected reloc type 0x??"; - msg[sizeof msg - 3] = DIGIT(type >> 8); + msg[sizeof msg - 3] = DIGIT(type >> 4); msg[sizeof msg - 2] = DIGIT(type); _dl_signal_error (0, map->l_name, msg); } else { char msg[] = "unexpected PLT reloc type 0x??"; - msg[sizeof msg - 3] = DIGIT(type >> 8); + msg[sizeof msg - 3] = DIGIT(type >> 4); msg[sizeof msg - 2] = DIGIT(type); _dl_signal_error (0, map->l_name, msg); } -- 2.7.4