Mark miscompile error for translation.

This commit is contained in:
Vladimir Serbinenko 2013-12-17 16:05:39 +01:00
parent 18e76955be
commit 50d2e9596f
2 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,7 @@
2013-12-17 Vladimir Serbinenko <phcoder@gmail.com>
Mark miscompile error for translation.
2013-12-17 Vladimir Serbinenko <phcoder@gmail.com>
Use %I64 and not %ll when using OS printf if compiling for windows.

View File

@ -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);