avicap32: Fix the type of retval in capGetDriverDescriptionA.
This commit is contained in:
parent
0287289475
commit
03812357db
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue