Changeset 88234 in vbox for trunk/src/VBox/Devices/Audio/DevSB16.cpp
- Timestamp:
- Mar 22, 2021 10:25:25 AM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Audio/DevSB16.cpp
r88230 r88234 63 63 #include "AudioMixBuffer.h" 64 64 #include "AudioMixer.h" 65 #include " DrvAudioCommon.h"65 #include "AudioHlp.h" 66 66 67 67 … … 1767 1767 { 1768 1768 AssertReturn(pCfg->enmDir == PDMAUDIODIR_OUT, VERR_INVALID_PARAMETER); 1769 Assert( DrvAudioHlpStreamCfgIsValid(pCfg));1769 Assert(AudioHlpStreamCfgIsValid(pCfg)); 1770 1770 1771 1771 PPDMAUDIOSTREAMCFG pCfgHost = PDMAudioStrmCfgDup(pCfg); … … 1867 1867 AssertPtr(pCfg); 1868 1868 1869 if (! DrvAudioHlpStreamCfgIsValid(pCfg))1869 if (!AudioHlpStreamCfgIsValid(pCfg)) 1870 1870 return VERR_INVALID_PARAMETER; 1871 1871
Note:
See TracChangeset
for help on using the changeset viewer.