Commit 1986dabc authored by André Hentschel's avatar André Hentschel Committed by Alexandre Julliard

dbghelp: Use boolean return value in boolean function.

parent 5c73a4e6
...@@ -693,7 +693,7 @@ BOOL symt_get_info(struct module* module, const struct symt* type, ...@@ -693,7 +693,7 @@ BOOL symt_get_info(struct module* module, const struct symt* type,
symt_get_tag_str(type->tag)); symt_get_tag_str(type->tag));
/* fall through */ /* fall through */
case SymTagFunctionType: case SymTagFunctionType:
return 0; return FALSE;
} }
break; break;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment