]> git.proxmox.com Git - grub2.git/commitdiff
* grub-core/efiemu/mm.c (grub_efiemu_mmap_fill): Change printf into
authorVladimir 'phcoder' Serbinenko <phcoder@gmail.com>
Fri, 11 Nov 2011 19:59:25 +0000 (20:59 +0100)
committerVladimir 'phcoder' Serbinenko <phcoder@gmail.com>
Fri, 11 Nov 2011 19:59:25 +0000 (20:59 +0100)
dprintf.
* grub-core/font/font.c (grub_font_load): Likewise.

ChangeLog
grub-core/efiemu/mm.c
grub-core/font/font.c

index aaec2066beb4bc59179cb3bd0c97954164df499c..e645709ef08281e430ee8d9e3e3a4b2cc65e880a 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2011-11-11  Vladimir Serbinenko  <phcoder@gmail.com>
+
+       * grub-core/efiemu/mm.c (grub_efiemu_mmap_fill): Change printf into
+       dprintf.
+       * grub-core/font/font.c (grub_font_load): Likewise.
+
 2011-11-11  Vladimir Serbinenko  <phcoder@gmail.com>
 
        * util/grub-macho2img.c: Add comment concerning gettext.
index 3c1dc2946d642d6a26df05a27400716f5eecb81a..7bb7cc0809df11f0b686ef5f72ec6eb14e3efe9d 100644 (file)
@@ -404,7 +404,8 @@ grub_efiemu_mmap_fill (void)
                                          GRUB_EFI_ACPI_MEMORY_NVS);
 
        default:
-         grub_printf ("Unknown memory type %d. Assuming unusable\n", type);
+         grub_dprintf ("efiemu",
+                       "Unknown memory type %d. Assuming unusable\n", type);
        case GRUB_MEMORY_RESERVED:
          return grub_efiemu_add_to_mmap (addr, size,
                                          GRUB_EFI_UNUSABLE_MEMORY);
index 26eac4c0591434a3349162e8c25580ab5192bea3..3737480cff816358450102bbbf4d89b22df8e9f8 100644 (file)
@@ -608,7 +608,7 @@ grub_font_load (const char *filename)
 
   if (!font->name)
     {
-      grub_printf ("Note: Font has no name.\n");
+      grub_dprintf ("font", "Font has no name.\n");
       font->name = grub_strdup ("Unknown");
     }