- Timestamp:
- May 7, 2008 3:53:15 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/log/log.cpp
r8663 r8670 2122 2122 cReadLocks = RT_MIN(0xfff, cReadLocks); 2123 2123 cWriteLocks = RT_MIN(0xfff, cWriteLocks); 2124 psz += RTStrFormatNumber(psz, cReadLocks, 16, 3, 0, RTSTR_F_ZEROPAD);2124 psz += RTStrFormatNumber(psz, cReadLocks, 16, 1, 0, RTSTR_F_ZEROPAD); 2125 2125 *psz++ = '/'; 2126 psz += RTStrFormatNumber(psz, cWriteLocks, 16, 3, 0, RTSTR_F_ZEROPAD);2126 psz += RTStrFormatNumber(psz, cWriteLocks, 16, 1, 0, RTSTR_F_ZEROPAD); 2127 2127 } 2128 2128 else … … 2130 2130 { 2131 2131 *psz++ = '0'; 2132 *psz++ = '0';2133 *psz++ = '0';2134 2132 *psz++ = '/'; 2135 *psz++ = '0';2136 *psz++ = '0';2137 2133 *psz++ = '0'; 2138 2134 }
Note:
See TracChangeset
for help on using the changeset viewer.