wmme: fixed signed/unsigned mismatch warning
This commit is contained in:
parent
df5c3f39e6
commit
bc78eab81d
1 changed files with 1 additions and 1 deletions
|
|
@ -2901,7 +2901,7 @@ PA_THREAD_FUNC ProcessingThreadProc( void *pArg )
|
|||
waitResult = WaitForMultipleObjects( eventCount, events, FALSE /* wait all = FALSE */, timeout );
|
||||
if( waitResult == WAIT_FAILED )
|
||||
{
|
||||
result = paUnanticipatedHostError;
|
||||
result = (DWORD)paUnanticipatedHostError;
|
||||
/** @todo FIXME/REVIEW: can't return host error info from an asyncronous thread. see http://www.portaudio.com/trac/ticket/143 */
|
||||
done = 1;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue