Module: wine Branch: master Commit: 1986dabc3e159263422019fce60a2eaa006a4fc9 URL: http://source.winehq.org/git/wine.git/?a=commit;h=1986dabc3e159263422019fce6...
Author: André Hentschel nerv@dawncrow.de Date: Mon Apr 28 20:04:41 2014 +0200
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 012af5f..c0ffaa0 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;