about summary refs log tree commit diff
path: root/elf
diff options
context:
space:
mode:
authorAndreas Jaeger <aj@suse.de>2000-05-10 10:16:57 +0000
committerAndreas Jaeger <aj@suse.de>2000-05-10 10:16:57 +0000
commit676d12fd82a9600aeef4aeca9492f9198870ef06 (patch)
treedd905748ecd636f82197fde21e15f0cf804a2ade /elf
parent9c95d361a28617958a5217986f8addf80c9ebb6c (diff)
downloadglibc-676d12fd82a9600aeef4aeca9492f9198870ef06.tar.gz
glibc-676d12fd82a9600aeef4aeca9492f9198870ef06.tar.xz
glibc-676d12fd82a9600aeef4aeca9492f9198870ef06.zip
Update.
2000-05-10  Jakub Jelinek  <jakub@redhat.com>

	* elf/dl-reloc.c (_dl_reloc_bad_type): Write type into the message
	at proper place.
Diffstat (limited to 'elf')
-rw-r--r--elf/dl-reloc.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/elf/dl-reloc.c b/elf/dl-reloc.c
index d1537ec3dc..8b67b4696d 100644
--- a/elf/dl-reloc.c
+++ b/elf/dl-reloc.c
@@ -158,15 +158,15 @@ _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 - 2] = DIGIT(type >> 8);
-      msg[sizeof msg - 1] = DIGIT(type);
+      msg[sizeof msg - 3] = DIGIT(type >> 8);
+      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 - 2] = DIGIT(type >> 8);
-      msg[sizeof msg - 1] = DIGIT(type);
+      msg[sizeof msg - 3] = DIGIT(type >> 8);
+      msg[sizeof msg - 2] = DIGIT(type);
       _dl_signal_error (0, map->l_name, msg);
     }
 }