Changeset 4801 in vbox for trunk/src/VBox/Runtime/strformat.cpp
- Timestamp:
- Sep 14, 2007 3:16:30 PM (18 years ago)
- svn:sync-xref-src-repo-rev:
- 24503
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/strformat.cpp
r4694 r4801 299 299 RTDECL(size_t) RTStrFormatV(PFNRTSTROUTPUT pfnOutput, void *pvArgOutput, PFNSTRFORMAT pfnFormat, void *pvArgFormat, const char *pszFormat, va_list InArgs) 300 300 { 301 /* make a copy so we can reference it (AMD64 / gcc). */ 302 va_list args; 301 va_list args; 303 302 KSIZE cch = 0; 304 303 const char *pszStartOutput = pszFormat; 305 304 306 va_copy(args, InArgs); 305 va_copy(args, InArgs); /* make a copy so we can reference it (AMD64 / gcc). */ 307 306 308 307 while (*pszFormat != '\0')
Note:
See TracChangeset
for help on using the changeset viewer.