Commit 2b061430 authored by Peter Oberndorfer's avatar Peter Oberndorfer Committed by Alexandre Julliard

dbghelp: Initialize BOOL elements with FALSE instead of 0.

parent 05368de6
......@@ -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;
......
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