Changeset 57383 in vbox
- Timestamp:
- Aug 17, 2015 12:21:07 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Audio/DrvHostDSound.cpp
r57382 r57383 717 717 static int dsoundCaptureOpen(PDRVHOSTDSOUND pThis, PDSOUNDSTREAMIN pDSoundStrmIn) 718 718 { 719 AssertPtrReturn(pThis, VERR_INVALID_P ARAMETER);720 AssertPtrReturn(pDSoundStrmIn, VERR_INVALID_P ARAMETER);719 AssertPtrReturn(pThis, VERR_INVALID_POINTER); 720 AssertPtrReturn(pDSoundStrmIn, VERR_INVALID_POINTER); 721 721 722 722 LogFlowFunc(("pDSoundStrmIn=%p, cbBufferIn=%ld, uHz=%RU32, cChannels=%RU8, cBits=%RU8, fSigned=%RTbool\n", … … 859 859 static int dsoundCaptureStart(PDRVHOSTDSOUND pThis, PDSOUNDSTREAMIN pDSoundStrmIn) 860 860 { 861 AssertPtrReturn(pThis, VERR_INVALID_P ARAMETER);862 AssertPtrReturn(pDSoundStrmIn, VERR_INVALID_P ARAMETER);861 AssertPtrReturn(pThis, VERR_INVALID_POINTER); 862 AssertPtrReturn(pDSoundStrmIn, VERR_INVALID_POINTER); 863 863 864 864 HRESULT hr; … … 1084 1084 default: 1085 1085 { 1086 AssertMsgFailed(("Invalid command %ld\n", enmStreamCmd));1086 AssertMsgFailed(("Invalid command: %ld\n", enmStreamCmd)); 1087 1087 rc = VERR_INVALID_PARAMETER; 1088 1088 break;
Note:
See TracChangeset
for help on using the changeset viewer.