From 1986dabc3e159263422019fce60a2eaa006a4fc9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Hentschel?= Date: Mon, 28 Apr 2014 20:04:41 +0200 Subject: [PATCH] dbghelp: Use boolean return value in boolean function. --- dlls/dbghelp/type.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/dbghelp/type.c b/dlls/dbghelp/type.c index 012af5feecb..c0ffaa03b74 100644 --- a/dlls/dbghelp/type.c +++ b/dlls/dbghelp/type.c @@ -693,7 +693,7 @@ BOOL symt_get_info(struct module* module, const struct symt* type, symt_get_tag_str(type->tag)); /* fall through */ case SymTagFunctionType: - return 0; + return FALSE; } break;