* grub-core/loader/linux.c: Use grub_dprintf for debug statements

rather than printf.
This commit is contained in:
Vladimir 'phcoder' Serbinenko 2013-05-07 11:38:49 +02:00
parent 47cf82b461
commit e34092fdf1
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2013-05-07 Vladimir Serbinenko <phcoder@gmail.com>
* grub-core/loader/linux.c: Use grub_dprintf for debug statements
rather than printf.
2013-05-07 Vladimir Serbinenko <phcoder@gmail.com> 2013-05-07 Vladimir Serbinenko <phcoder@gmail.com>
* grub-core/video/readers/jpeg.c: Use grub_dprintf for debug statements * grub-core/video/readers/jpeg.c: Use grub_dprintf for debug statements

View file

@ -126,7 +126,7 @@ insert_dir (const char *name, struct dir **root,
n->name = grub_strndup (cb, ce - cb); n->name = grub_strndup (cb, ce - cb);
if (ptr) if (ptr)
{ {
grub_printf ("Creating directory %s, %s\n", name, ce); grub_dprintf ("linux", "Creating directory %s, %s\n", name, ce);
ptr = make_header (ptr, name, ce - name, ptr = make_header (ptr, name, ce - name,
040777, 0); 040777, 0);
} }