Changeset 88924 in vbox for trunk/src/VBox
- Timestamp:
- May 7, 2021 1:41:46 PM (4 years ago)
- Location:
- trunk/src/VBox
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Audio/DrvHostAudioAlsa.cpp
r88923 r88924 1103 1103 if (rc >= 0) 1104 1104 { 1105 if ( cFramesAvail >= pStreamALSA->Cfg.Backend.cFramesBufferSize)1105 if ((uint32_t)cFramesAvail >= pStreamALSA->Cfg.Backend.cFramesBufferSize) 1106 1106 cbPending = 0; 1107 1107 else -
trunk/src/VBox/ValidationKit/utils/audio/vkat.cpp
r88923 r88924 155 155 }; 156 156 157 #if 0 157 158 static const RTGETOPTDEF g_aCmdCommonOptions[] = 158 159 { 159 160 { "--help", 'h', RTGETOPT_REQ_NOTHING } 160 161 }; 162 #endif 161 163 162 164 /** Command line parameters for test mode. */ … … 423 425 static int audioTestWorker(PAUDIOTESTENV pTstEnv, PAUDIOTESTPARMS pOverrideParms) 424 426 { 425 int rc ;427 int rc = VINF_SUCCESS; 426 428 427 429 unsigned uSeq = 0;
Note:
See TracChangeset
for help on using the changeset viewer.