dbghelp: Initialize BOOL elements with FALSE instead of 0.

This commit is contained in:
Peter Oberndorfer 2006-11-06 20:05:38 +01:00 committed by Alexandre Julliard
parent 05368de685
commit 2b06143031
1 changed files with 2 additions and 2 deletions

View File

@ -136,8 +136,8 @@ struct module* module_new(struct process* pcs, const char* name,
module->module.LineNumbers = FALSE;
module->module.GlobalSymbols = FALSE;
module->module.TypeInfo = FALSE;
module->module.SourceIndexed = 0;
module->module.Publics = 0;
module->module.SourceIndexed = FALSE;
module->module.Publics = FALSE;
module->type = type;
module->is_virtual = virtual ? TRUE : FALSE;