Re: msi: Use a debug channel to turn on transform debugging. (Coverity)
7 Apr
2006
7 Apr
'06
4:29 a.m.
Mike McCormack <mike(a)codeweavers.com> writes:
--- a/dlls/msi/table.c +++ b/dlls/msi/table.c @@ -1604,13 +1604,12 @@ static MSIRECORD *msi_get_transform_reco USHORT mask = *rawdata++; MSICOLUMNINFO *columns = tv->columns; MSIRECORD *rec; - const int debug_transform = 0;
rec = MSI_CreateRecord( tv->num_cols ); if( !rec ) return rec;
- if( debug_transform ) MESSAGE("row -> "); + if( TRACE_ON(msidb) ) MESSAGE("row -> ");
You should use TRACE instead of MESSAGE then, it will be a lot more readable. -- Alexandre Julliard julliard(a)winehq.org
7189
Age (days ago)
7189
Last active (days ago)
0 comments
1 participants
participants (1)
-
Alexandre Julliard