dbghelp: Use boolean return value in boolean function.

This commit is contained in:
André Hentschel 2014-04-28 20:04:41 +02:00 committed by Alexandre Julliard
parent 5c73a4e629
commit 1986dabc3e
1 changed files with 1 additions and 1 deletions

View File

@ -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;