Changeset 7183 in vbox for trunk/src/VBox/Runtime/common/string/strformat.cpp
- Timestamp:
- Feb 27, 2008 5:41:30 PM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 28483
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/string/strformat.cpp
r6296 r7183 770 770 case 'R': 771 771 { 772 pszFormat--; 773 cch += rtstrFormatRt(pfnOutput, pvArgOutput, &pszFormat, &args, cchPrecision, cchWidth, fFlags, chArgSize); 772 if (*pszFormat != '[') 773 { 774 pszFormat--; 775 cch += rtstrFormatRt(pfnOutput, pvArgOutput, &pszFormat, &args, cchPrecision, cchWidth, fFlags, chArgSize); 776 } 777 else 778 { 779 pszFormat--; 780 cch += rtstrFormatType(pfnOutput, pvArgOutput, &pszFormat, &args, cchPrecision, cchWidth, fFlags, chArgSize); 781 } 774 782 break; 775 783 }
Note:
See TracChangeset
for help on using the changeset viewer.