avicap32: Fix the type of retval in capGetDriverDescriptionA.

oldstable
Rob Shearman 2008-02-25 08:59:38 +00:00 committed by Alexandre Julliard
parent 0287289475
commit 03812357db
1 changed files with 1 additions and 1 deletions

View File

@ -179,7 +179,7 @@ static BOOL query_video_device(int devnum, char *name, int namesize, char *versi
BOOL VFWAPI capGetDriverDescriptionA(WORD wDriverIndex, LPSTR lpszName,
INT cbName, LPSTR lpszVer, INT cbVer)
{
HRESULT retval;
BOOL retval;
WCHAR devname[CAP_DESC_MAX], devver[CAP_DESC_MAX];
TRACE("--> capGetDriverDescriptionW\n");
retval = capGetDriverDescriptionW(wDriverIndex, devname, CAP_DESC_MAX, devver, CAP_DESC_MAX);