From: Vladimir 'phcoder' Serbinenko Date: Tue, 7 May 2013 09:38:49 +0000 (+0200) Subject: * grub-core/loader/linux.c: Use grub_dprintf for debug statements X-Git-Tag: grub-2.02-beta1~1031 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e34092fdf11fcbb9412a4187d99f67dec845d8b0;p=thirdparty%2Fgrub.git * grub-core/loader/linux.c: Use grub_dprintf for debug statements rather than printf. --- diff --git a/ChangeLog b/ChangeLog index 04a2f000d..fc647b886 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2013-05-07 Vladimir Serbinenko + + * grub-core/loader/linux.c: Use grub_dprintf for debug statements + rather than printf. + 2013-05-07 Vladimir Serbinenko * grub-core/video/readers/jpeg.c: Use grub_dprintf for debug statements diff --git a/grub-core/loader/linux.c b/grub-core/loader/linux.c index cbe3c5363..af067a5a4 100644 --- a/grub-core/loader/linux.c +++ b/grub-core/loader/linux.c @@ -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); }