Changeset 70822 in vbox for trunk/src/VBox
- Timestamp:
- Jan 31, 2018 10:34:47 AM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Audio/DrvAudioCommon.cpp
r70821 r70822 1396 1396 1397 1397 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). */ 1400 1403 rc = VINF_SUCCESS; 1401 1404
Note:
See TracChangeset
for help on using the changeset viewer.