]> git.ipfire.org Git - thirdparty/grub.git/commitdiff
* grub-core/loader/i386/xnu.c (grub_xnu_boot): Fix printf.
authorVladimir 'phcoder' Serbinenko <phcoder@gmail.com>
Thu, 9 Feb 2012 22:32:03 +0000 (23:32 +0100)
committerVladimir 'phcoder' Serbinenko <phcoder@gmail.com>
Thu, 9 Feb 2012 22:32:03 +0000 (23:32 +0100)
* grub-core/loader/ia64/efi/linux.c (grub_cmd_fpswa): Likewise.

ChangeLog
grub-core/loader/i386/xnu.c
grub-core/loader/ia64/efi/linux.c

index 9d1f761f61b862a82c7aa18b5650082d73a41dac..4d180a1b45ba100fd1ad20c67dade3c1dfc9fe64 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2012-02-09  Vladimir Serbinenko  <phcoder@gmail.com>
+
+       * grub-core/loader/i386/xnu.c (grub_xnu_boot): Fix printf.
+       * grub-core/loader/ia64/efi/linux.c (grub_cmd_fpswa): Likewise.
+
 2012-02-09  Vladimir Serbinenko  <phcoder@gmail.com>
 
        * grub-core/kern/i386/qemu/mmap.c (grub_machine_mmap_init):
index 0bbc705a05032525296220d61b27d5b5e40f5b96..a94b6a48e435dd50a002b51ee4190c0f279072d2 100644 (file)
@@ -1001,7 +1001,7 @@ grub_xnu_boot (void)
 
   if (debug && (grub_strword (debug, "all") || grub_strword (debug, "xnu")))
     {
-      grub_printf (_("Press any key to launch xnu\n"));
+      grub_puts_ (N_("Press any key to launch xnu"));
       grub_getkey ();
     }
 
index f5a19ff32dbd4c29c0556a6e66da4dbecb727d60..42b460b48dc9b9858795c04faa7ebcbe9ab7b108 100644 (file)
@@ -637,7 +637,7 @@ grub_cmd_fpswa (grub_command_t cmd __attribute__ ((unused)),
 {
   query_fpswa ();
   if (fpswa == NULL)
-    grub_printf (_("No FPSWA found\n"));
+    grub_puts_ (N_("No FPSWA found"));
   else
     grub_printf (_("FPSWA revision: %x\n"), fpswa->revision);
   return GRUB_ERR_NONE;