wineesd.drv: Add missing return in function returning non-void.

Return value is analog to what the ALSA and OSS driver are doing.
This commit is contained in:
Michael Stefaniuc 2009-01-28 01:05:45 +01:00 committed by Alexandre Julliard
parent 116886cf0a
commit 0b872e65b2
1 changed files with 2 additions and 0 deletions

View File

@ -1157,6 +1157,8 @@ static DWORD CALLBACK wodPlayer(LPVOID pmt)
dwNextFeedTime = dwNextNotifyTime = INFINITE; dwNextFeedTime = dwNextNotifyTime = INFINITE;
} }
} }
return 0;
} }
/************************************************************************** /**************************************************************************