diff --git a/ChangeLog b/ChangeLog index ec161421e..39515b8da 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2013-12-17 Vladimir Serbinenko + + Mark miscompile error for translation. + 2013-12-17 Vladimir Serbinenko Use %I64 and not %ll when using OS printf if compiling for windows. diff --git a/util/grub-mkimagexx.c b/util/grub-mkimagexx.c index 27aef711d..b62a8a3a3 100644 --- a/util/grub-mkimagexx.c +++ b/util/grub-mkimagexx.c @@ -1374,8 +1374,8 @@ SUFFIX (locate_sections) (const char *kernel_path, - image_target->link_addr; if (grub_host_to_target_addr (s->sh_addr) != image_target->link_addr) - grub_util_error ("`%s' is miscompiled: it's start address is 0x%llx" - " instead of 0x%llx: ld.gold bug?", + grub_util_error (_("`%s' is miscompiled: it's start address is 0x%llx" + " instead of 0x%llx: ld.gold bug?"), kernel_path, (unsigned long long) grub_host_to_target_addr (s->sh_addr), (unsigned long long) image_target->link_addr);