summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan Lynagh <ian@well-typed.com>2012-10-26 22:39:53 +0100
committerIan Lynagh <ian@well-typed.com>2012-10-26 22:39:53 +0100
commitfb1b2c7d8064ab714ce7d0c674034a88e658672c (patch)
tree99517cf3540b5f9c394149928a5bec2ee0f1789c
parent0c7f0c2cc2c3746cc8ecd8efd44963c65cb57270 (diff)
downloadhaskell-fb1b2c7d8064ab714ce7d0c674034a88e658672c.tar.gz
Fix a couple of format strings
-rw-r--r--rts/Linker.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/rts/Linker.c b/rts/Linker.c
index dca8a52813..0fd3be1052 100644
--- a/rts/Linker.c
+++ b/rts/Linker.c
@@ -5002,7 +5002,7 @@ do_Elf_Rel_relocations ( ObjectCode* oc, char* ehdrC,
# endif // arm_HOST_ARCH
default:
- errorBelch("%s: unhandled ELF relocation(Rel) type %" FMT_SizeT "\n",
+ errorBelch("%s: unhandled ELF relocation(Rel) type %" FMT_Word "\n",
oc->fileName, (W_)ELF_R_TYPE(info));
return 0;
}
@@ -5317,7 +5317,7 @@ do_Elf_Rela_relocations ( ObjectCode* oc, char* ehdrC,
#endif
default:
- errorBelch("%s: unhandled ELF relocation(RelA) type %" FMT_SizeT "\n",
+ errorBelch("%s: unhandled ELF relocation(RelA) type %" FMT_Word "\n",
oc->fileName, (W_)ELF_R_TYPE(info));
return 0;
}