]> git.ipfire.org Git - thirdparty/grub.git/commitdiff
Transform exfat printfs into dprintfs
authorVladimir 'phcoder' Serbinenko <phcoder@gmail.com>
Mon, 11 Apr 2011 18:38:08 +0000 (20:38 +0200)
committerVladimir 'phcoder' Serbinenko <phcoder@gmail.com>
Mon, 11 Apr 2011 18:38:08 +0000 (20:38 +0200)
grub-core/fs/fat.c

index 5f7a585715a9185c29f6e751752b92eeff201ddd..49bb3a599e3620d6ebe6c716120972d223184fc1 100644 (file)
@@ -686,7 +686,8 @@ grub_fat_iterate_dir (grub_disk_t disk, struct grub_fat_data *data,
                  slots++;
                  break;
                default:
-                 grub_printf ("unknown secondary type 0x%02x\n", sec.entry_type);
+                 grub_dprintf ("exfat", "unknown secondary type 0x%02x\n",
+                               sec.entry_type);
                }
            }
 
@@ -712,7 +713,7 @@ grub_fat_iterate_dir (grub_disk_t disk, struct grub_fat_data *data,
       /* Volume label. */
       if (dir.entry_type == 0x83)
        continue;
-      grub_printf ("unknown primary type 0x%02x\n", dir.entry_type);
+      grub_dprintf ("exfat", "unknown primary type 0x%02x\n", dir.entry_type);
     }
   grub_free (filename);
   grub_free (unibuf);