Changeset 62436 in vbox for trunk/src/VBox/Runtime/common/log/log.cpp
- Timestamp:
- Jul 22, 2016 12:46:53 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/log/log.cpp
r60883 r62436 2666 2666 uint16_t const iGroup = RT_HI_U16(fFlagsAndGroup); 2667 2667 if ( iGroup != UINT16_MAX 2668 && ( (pLogger->afGroups[iGroup < pLogger->cGroups ? iGroup : 0] & (fFlags | RTLOGGRPFLAGS_ENABLED))2669 != (fFlags | RTLOGGRPFLAGS_ENABLED)))2668 && ( (pLogger->afGroups[iGroup < pLogger->cGroups ? iGroup : 0] & (fFlags | (uint32_t)RTLOGGRPFLAGS_ENABLED)) 2669 != (fFlags | (uint32_t)RTLOGGRPFLAGS_ENABLED))) 2670 2670 pLogger = NULL; 2671 2671 }
Note:
See TracChangeset
for help on using the changeset viewer.