Changeset 14061 in vbox
- Timestamp:
- Nov 10, 2008 11:12:54 PM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 39117
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/VBox/strformat-vbox.cpp
r11413 r14061 173 173 case 'd': 174 174 { 175 intcch = 0;176 int off = 0;175 size_t cch = 0; 176 int off = 0; 177 177 178 178 if (cchPrecision <= 0) … … 211 211 if (cchWidth-- > 0) 212 212 { 213 int cch = RTStrFormat(pfnOutput, pvArgOutput, NULL, 0, "%02x", *pu8++);213 size_t cch = RTStrFormat(pfnOutput, pvArgOutput, NULL, 0, "%02x", *pu8++); 214 214 for (; cchWidth > 0; cchWidth--, pu8++) 215 215 cch += RTStrFormat(pfnOutput, pvArgOutput, NULL, 0, " %02x", *pu8);
Note:
See TracChangeset
for help on using the changeset viewer.