Use ERR instead of DPRINTF in dump_pidl_hex.

This commit is contained in:
Alexandre Julliard 2005-08-09 20:48:17 +00:00
parent 866f52bce1
commit 78340756f3
1 changed files with 1 additions and 1 deletions

View File

@ -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 );
}
}