* grub-core/loader/linux.c: Use grub_dprintf for debug statements
rather than printf.
This commit is contained in:
parent
47cf82b461
commit
e34092fdf1
2 changed files with 6 additions and 1 deletions
|
@ -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>
|
||||
|
||||
* grub-core/video/readers/jpeg.c: Use grub_dprintf for debug statements
|
||||
|
|
|
@ -126,7 +126,7 @@ insert_dir (const char *name, struct dir **root,
|
|||
n->name = grub_strndup (cb, ce - cb);
|
||||
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,
|
||||
040777, 0);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue