VirtualBox

Changeset 70822 in vbox for trunk/src/VBox


Ignore:
Timestamp:
Jan 31, 2018 10:34:47 AM (7 years ago)
Author:
vboxsync
Message:

DrvAudioCommon.cpp: LogRel2 logging for DrvAudioHlpFileDelete().

File:
1 edited

Legend:

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

    r70821 r70822  
    13961396
    13971397    int rc = RTFileDelete(pFile->szName);
    1398 
    1399     if (rc == VERR_FILE_NOT_FOUND) /* Don't bitch if the file is not around (anymore). */
     1398    if (RT_SUCCESS(rc))
     1399    {
     1400        LogRel2(("Audio: Deleted file '%s'\n", pFile->szName));
     1401    }
     1402    else if (rc == VERR_FILE_NOT_FOUND) /* Don't bitch if the file is not around (anymore). */
    14001403        rc = VINF_SUCCESS;
    14011404
Note: See TracChangeset for help on using the changeset viewer.

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