Commit 03812357 authored by Rob Shearman's avatar Rob Shearman Committed by Alexandre Julliard

avicap32: Fix the type of retval in capGetDriverDescriptionA.

parent 02872894
......@@ -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);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment