From 8afd655a6248c8fe2cbd405ecc1634e4e6fe02d4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20Delanoy?= Date: Wed, 9 Oct 2013 00:06:16 +0200 Subject: [PATCH] winspool.drv: Use BOOL type where appropriate. --- dlls/winspool.drv/info.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/winspool.drv/info.c b/dlls/winspool.drv/info.c index ed4b314e106..aebdef927f1 100644 --- a/dlls/winspool.drv/info.c +++ b/dlls/winspool.drv/info.c @@ -6877,7 +6877,7 @@ BOOL WINAPI AddPrinterDriverExA(LPSTR pName, DWORD Level, LPBYTE pDriverInfo, DW LPWSTR nameW = NULL; DWORD lenA; DWORD len; - DWORD res = FALSE; + BOOL res = FALSE; TRACE("(%s, %d, %p, 0x%x)\n", debugstr_a(pName), Level, pDriverInfo, dwFileCopyFlags);