VirtualBox

Changeset 89044 in vbox


Ignore:
Timestamp:
May 14, 2021 1:08:09 PM (4 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
144384
Message:

Audio/ValKit: Docs update, use intermediate path in AudioTestPathCreateTemp() [Doxygen fixes]. bugref:10008

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Devices/Audio/AudioTest.cpp

    r89043 r89044  
    299299 * @param   pSet                Test set to write manifest for.
    300300 * @param   pszFormat           Format string to write.
    301  * @param   args                Variable arguments for \a pszFormat.
     301 * @param   ...                 Variable arguments for \a pszFormat. Optional.
    302302 */
    303303static int audioTestManifestWriteLn(PAUDIOTESTSET pSet, const char *pszFormat, ...)
     
    323323 * @returns VBox status code.
    324324 * @param   pSet                Test set to write manifest for.
    325  * @param   pszFormat           Format string of section to write.
    326  * @param   args                Variable arguments for \a pszFormat.
    327  */
    328 static int audioTestManifestWriteSection(PAUDIOTESTSET pSet, const char *pszFormat, ...)
     325 * @param   pszSection          Format string of section to write.
     326 * @param   ...                 Variable arguments for \a pszSection. Optional.
     327 */
     328static int audioTestManifestWriteSection(PAUDIOTESTSET pSet, const char *pszSection, ...)
    329329{
    330330    va_list va;
    331     va_start(va, pszFormat);
     331    va_start(va, pszSection);
    332332
    333333    /** @todo Keep it as simple as possible for now. Improve this later. */
     
    335335    AssertRC(rc);
    336336
    337     rc = audioTestManifestWriteV(pSet, pszFormat, va);
     337    rc = audioTestManifestWriteV(pSet, pszSection, va);
    338338    AssertRC(rc);
    339339
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette