about summary refs log tree commit diff
path: root/elf/dl-reloc.c
diff options
context:
space:
mode:
authorAndreas Jaeger <aj@suse.de>2000-05-10 10:20:09 +0000
committerAndreas Jaeger <aj@suse.de>2000-05-10 10:20:09 +0000
commit5d693ae3e5516caf545f828a33d97b36c12024de (patch)
tree4a82efd39e7c90a716ec87b106a33d4dd313a34e /elf/dl-reloc.c
parent676d12fd82a9600aeef4aeca9492f9198870ef06 (diff)
downloadglibc-5d693ae3e5516caf545f828a33d97b36c12024de.tar.gz
glibc-5d693ae3e5516caf545f828a33d97b36c12024de.tar.xz
glibc-5d693ae3e5516caf545f828a33d97b36c12024de.zip
Update.
	at proper place.  Compute the high nibble correctly.
Diffstat (limited to 'elf/dl-reloc.c')
-rw-r--r--elf/dl-reloc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/elf/dl-reloc.c b/elf/dl-reloc.c
index 8b67b4696d..3ee6f08483 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);
     }