Mike McCormack mike@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.