Changeset 4694 in vbox for trunk/src/VBox/Runtime
- Timestamp:
- Sep 11, 2007 10:14:54 AM (17 years ago)
- Location:
- trunk/src/VBox/Runtime
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/VBox/strformat-vbox.cpp
r4071 r4694 176 176 cch += pfnOutput(pvArgOutput, " ", 1); 177 177 178 for (i nt i= 0; i < cchPrecision && off + i < cchWidth; i++)178 for (i = 0; i < cchPrecision && off + i < cchWidth; i++) 179 179 { 180 180 uint8_t u8 = pu8[i]; -
trunk/src/VBox/Runtime/strformat.cpp
r4371 r4694 301 301 /* make a copy so we can reference it (AMD64 / gcc). */ 302 302 va_list args; 303 va_copy(args, InArgs);304 305 303 KSIZE cch = 0; 306 304 const char *pszStartOutput = pszFormat; 305 306 va_copy(args, InArgs); 307 307 308 while (*pszFormat != '\0') 308 309 { -
trunk/src/VBox/Runtime/strformatrt.cpp
r4071 r4694 513 513 cch += pfnOutput(pvArgOutput, " ", 1); 514 514 515 for (i nt i= 0; i < cchPrecision && off + i < cchWidth; i++)515 for (i = 0; i < cchPrecision && off + i < cchWidth; i++) 516 516 { 517 517 uint8_t u8 = pu8[i];
Note:
See TracChangeset
for help on using the changeset viewer.