From: Vladimir Serbinenko Date: Tue, 17 Dec 2013 15:05:39 +0000 (+0100) Subject: Mark miscompile error for translation. X-Git-Tag: grub-2.02-beta1~41 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=50d2e9596ff2a645ca8ba024b15bb640bb7ef3ed;p=thirdparty%2Fgrub.git Mark miscompile error for translation. --- 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);