diff --git a/ChangeLog b/ChangeLog index 83b575538..3d34abf21 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2009-08-15 Vladimir Serbinenko + + * fs/affs.c (grub_affs_read_symlink): Change leftover grub_printf into + grub_dprintf. + * fs/fat.c (grub_fat_read_data): Likewise. + 2009-08-14 Vladimir Serbinenko * loader/i386/multiboot.c (grub_multiboot): Don't pass filename to diff --git a/fs/affs.c b/fs/affs.c index 286b99f9a..cfe7d579b 100644 --- a/fs/affs.c +++ b/fs/affs.c @@ -273,7 +273,7 @@ grub_affs_read_symlink (grub_fshelp_node_t node) grub_free (symlink); return 0; } - grub_printf ("Symlink: `%s'\n", symlink); + grub_dprintf ("affs", "Symlink: `%s'\n", symlink); return symlink; } diff --git a/fs/fat.c b/fs/fat.c index cc733362f..024e8c684 100644 --- a/fs/fat.c +++ b/fs/fat.c @@ -423,8 +423,8 @@ grub_fat_read_data (grub_disk_t disk, struct grub_fat_data *data, } #if 0 - grub_printf ("%s:%d: fat_size=%d, next_cluster=%u\n", - __FILE__, __LINE__, data->fat_size, next_cluster); + grub_dprintf ("fat", "fat_size=%d, next_cluster=%u\n", + data->fat_size, next_cluster); #endif /* Check the end. */