From: BVK Chaitanya Date: Sat, 23 Jan 2010 03:48:13 +0000 (+0530) Subject: replace grub_printf with grub_dprintf X-Git-Tag: 1.99~1013^2~8 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=836727564e7b27462d0dffc9ea41a2463370f5d1;p=thirdparty%2Fgrub.git replace grub_printf with grub_dprintf --- diff --git a/script/lexer.c b/script/lexer.c index 834ca1e91..17c38a353 100644 --- a/script/lexer.c +++ b/script/lexer.c @@ -323,7 +323,7 @@ grub_script_yylex (union YYSTYPE *value, str = yyget_text (lexerstate->yyscanner); type = GRUB_SCRIPT_ARG_TYPE_TEXT; } - /* grub_printf ("tok %u, txt [%s] size %u\n", token, str, lexerstate->size); */ + grub_dprintf("lexer", "token %u text [%s]\n", token, str); value->arg = grub_script_arg_add (parserstate, value->arg, type, str); }