Module: wine Branch: master Commit: abd0c343fcee21a36ffe0e6567b6e351b8fc65c9 URL: http://source.winehq.org/git/wine.git/?a=commit;h=abd0c343fcee21a36ffe0e6567...
Author: Frédéric Delanoy frederic.delanoy@gmail.com Date: Fri Nov 1 00:21:25 2013 +0100
imagehlp/tests: Use BOOL type where appropriate.
---
dlls/imagehlp/tests/integrity.c | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-)
diff --git a/dlls/imagehlp/tests/integrity.c b/dlls/imagehlp/tests/integrity.c index c29eea8..025e20f 100644 --- a/dlls/imagehlp/tests/integrity.c +++ b/dlls/imagehlp/tests/integrity.c @@ -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);