Changeset 29683 in vbox for trunk/src/VBox/Runtime/common/string
- Timestamp:
- May 20, 2010 11:29:21 AM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 61849
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/string/strformat.cpp
r29660 r29683 352 352 * @param InArgs Argument list. 353 353 */ 354 RTDECL(size_t) RTStrFormatV(PFNRTSTROUTPUT pfnOutput, void *pvArgOutput, PFNSTRFORMAT pfnFormat, void *pvArgFormat, const char *pszFormat, va_list InArgs) 354 RTDECL(size_t) RTStrFormatV(PFNRTSTROUTPUT pfnOutput, void *pvArgOutput, PFNSTRFORMAT pfnFormat, void *pvArgFormat, 355 const char *pszFormat, va_list InArgs) 355 356 { 356 357 va_list args; … … 833 834 { 834 835 pszFormat--; 835 cch += rtstrFormatRt(pfnOutput, pvArgOutput, &pszFormat, &args, cch Precision, cchWidth, fFlags, chArgSize);836 cch += rtstrFormatRt(pfnOutput, pvArgOutput, &pszFormat, &args, cchWidth, cchPrecision, fFlags, chArgSize); 836 837 } 837 838 else 838 839 { 839 840 pszFormat--; 840 cch += rtstrFormatType(pfnOutput, pvArgOutput, &pszFormat, &args, cch Precision, cchWidth, fFlags, chArgSize);841 cch += rtstrFormatType(pfnOutput, pvArgOutput, &pszFormat, &args, cchWidth, cchPrecision, fFlags, chArgSize); 841 842 } 842 843 break; … … 851 852 { 852 853 pszFormat--; 853 cch += pfnFormat(pvArgFormat, pfnOutput, pvArgOutput, &pszFormat, &args, cch Precision, cchWidth, fFlags, chArgSize);854 cch += pfnFormat(pvArgFormat, pfnOutput, pvArgOutput, &pszFormat, &args, cchWidth, cchPrecision, fFlags, chArgSize); 854 855 } 855 856 break;
Note:
See TracChangeset
for help on using the changeset viewer.