From 78340756f3d24a0e113748e34fc4372627ab7770 Mon Sep 17 00:00:00 2001 From: Alexandre Julliard Date: Tue, 9 Aug 2005 20:48:17 +0000 Subject: [PATCH] Use ERR instead of DPRINTF in dump_pidl_hex. --- dlls/shell32/debughlp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/shell32/debughlp.c b/dlls/shell32/debughlp.c index 28e6a2df67..03dceaf04f 100644 --- a/dlls/shell32/debughlp.c +++ b/dlls/shell32/debughlp.c @@ -245,7 +245,7 @@ static void dump_pidl_hex( LPCITEMIDLIST pidl ) if( i!=(n-1) && (i%max_line) != (max_line-1) ) continue; szAscii[ (i%max_line)+1 ] = 0; - DPRINTF("%-*s %s\n", max_line*3, szHex, szAscii ); + ERR("%-*s %s\n", max_line*3, szHex, szAscii ); } }