=?UTF-8?Q?Andr=C3=A9=20Hentschel=20?=: dbghelp: Use boolean return value in boolean function.

Alexandre Julliard julliard at winehq.org
Tue Apr 29 13:36:12 CDT 2014


Module: wine
Branch: master
Commit: 1986dabc3e159263422019fce60a2eaa006a4fc9
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=1986dabc3e159263422019fce60a2eaa006a4fc9

Author: André Hentschel <nerv at 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;
 




More information about the wine-cvs mailing list