imagehlp/tests: Use BOOL type where appropriate.

This commit is contained in:
Frédéric Delanoy 2013-11-01 00:21:25 +01:00 committed by Alexandre Julliard
parent 7e63200672
commit abd0c343fc
1 changed files with 2 additions and 1 deletions

View File

@ -178,7 +178,8 @@ static void test_get_certificate(char *cert_data, int index)
HANDLE hFile;
LPWIN_CERTIFICATE cert;
DWORD cert_len = 0;
DWORD err, ret;
DWORD err;
BOOL ret;
hFile = CreateFileA(test_dll_path, GENERIC_READ, FILE_SHARE_READ, NULL, OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, NULL);