Changeset 89044 in vbox
- Timestamp:
- May 14, 2021 1:08:09 PM (4 years ago)
- svn:sync-xref-src-repo-rev:
- 144384
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Audio/AudioTest.cpp
r89043 r89044 299 299 * @param pSet Test set to write manifest for. 300 300 * @param pszFormat Format string to write. 301 * @param args Variable arguments for \a pszFormat.301 * @param ... Variable arguments for \a pszFormat. Optional. 302 302 */ 303 303 static int audioTestManifestWriteLn(PAUDIOTESTSET pSet, const char *pszFormat, ...) … … 323 323 * @returns VBox status code. 324 324 * @param pSet Test set to write manifest for. 325 * @param psz FormatFormat string of section to write.326 * @param args Variable arguments for \a pszFormat.327 */ 328 static int audioTestManifestWriteSection(PAUDIOTESTSET pSet, const char *psz Format, ...)325 * @param pszSection Format string of section to write. 326 * @param ... Variable arguments for \a pszSection. Optional. 327 */ 328 static int audioTestManifestWriteSection(PAUDIOTESTSET pSet, const char *pszSection, ...) 329 329 { 330 330 va_list va; 331 va_start(va, psz Format);331 va_start(va, pszSection); 332 332 333 333 /** @todo Keep it as simple as possible for now. Improve this later. */ … … 335 335 AssertRC(rc); 336 336 337 rc = audioTestManifestWriteV(pSet, psz Format, va);337 rc = audioTestManifestWriteV(pSet, pszSection, va); 338 338 AssertRC(rc); 339 339
Note:
See TracChangeset
for help on using the changeset viewer.