Revision: 2500
http://svn.sv.gnu.org/viewvc/?view=rev&root=grub&revision=2500
Author: phcoder
Date: 2009-08-15 14:45:08 +0000 (Sat, 15 Aug 2009)
Log Message:
-----------
2009-08-15 Vladimir Serbinenko <[email protected]>
* fs/affs.c (grub_affs_read_symlink): Change leftover grub_printf into
grub_dprintf.
* fs/fat.c (grub_fat_read_data): Likewise.
Modified Paths:
--------------
trunk/grub2/ChangeLog
trunk/grub2/fs/affs.c
trunk/grub2/fs/fat.c
Modified: trunk/grub2/ChangeLog
===================================================================
--- trunk/grub2/ChangeLog 2009-08-14 15:19:24 UTC (rev 2499)
+++ trunk/grub2/ChangeLog 2009-08-15 14:45:08 UTC (rev 2500)
@@ -1,3 +1,9 @@
+2009-08-15 Vladimir Serbinenko <[email protected]>
+
+ * 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 <[email protected]>
* loader/i386/multiboot.c (grub_multiboot): Don't pass filename to
Modified: trunk/grub2/fs/affs.c
===================================================================
--- trunk/grub2/fs/affs.c 2009-08-14 15:19:24 UTC (rev 2499)
+++ trunk/grub2/fs/affs.c 2009-08-15 14:45:08 UTC (rev 2500)
@@ -273,7 +273,7 @@
grub_free (symlink);
return 0;
}
- grub_printf ("Symlink: `%s'\n", symlink);
+ grub_dprintf ("affs", "Symlink: `%s'\n", symlink);
return symlink;
}
Modified: trunk/grub2/fs/fat.c
===================================================================
--- trunk/grub2/fs/fat.c 2009-08-14 15:19:24 UTC (rev 2499)
+++ trunk/grub2/fs/fat.c 2009-08-15 14:45:08 UTC (rev 2500)
@@ -423,8 +423,8 @@
}
#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. */