Changeset 68486 in vbox for trunk/src/VBox/Devices
- Timestamp:
- Aug 21, 2017 1:56:07 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Audio/DrvAudio.cpp
r68485 r68486 2720 2720 static DECLCALLBACK(bool) drvAudioIsEnabled(PPDMIAUDIOCONNECTOR pInterface, PDMAUDIODIR enmDir) 2721 2721 { 2722 AssertPtrReturn(pInterface, VERR_INVALID_POINTER);2722 AssertPtrReturn(pInterface, false); 2723 2723 2724 2724 PDRVAUDIO pThis = PDMIAUDIOCONNECTOR_2_DRVAUDIO(pInterface); … … 2734 2734 pfEnabled = &pThis->Out.fEnabled; 2735 2735 else 2736 AssertFailedReturn( VERR_INVALID_PARAMETER);2736 AssertFailedReturn(false); 2737 2737 2738 2738 const bool fIsEnabled = *pfEnabled;
Note:
See TracChangeset
for help on using the changeset viewer.