dbghelp: [3/3] initialize BOOL elements with FALSE instead of 0

Peter Oberndorfer kumbayo84 at arcor.de
Mon Nov 6 13:05:38 CST 2006


purely cosmetical issue

Changelog:
dbghelp: initialize BOOL elements with FALSE instead of 0
-------------- next part --------------
From 84ea1dea7932579e3c9f62cecbc656930040459c Mon Sep 17 00:00:00 2001
From: Peter Oberndorfer <kumbayo84 at arcor.de>
Date: Mon, 6 Nov 2006 19:46:23 +0100
Subject: [PATCH] dbghelp: initialize BOOL elements with FALSE instead of 0
---
 dlls/dbghelp/module.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dlls/dbghelp/module.c b/dlls/dbghelp/module.c
index db725b8..ec3c70c 100644
--- a/dlls/dbghelp/module.c
+++ b/dlls/dbghelp/module.c
@@ -136,8 +136,8 @@ struct module* module_new(struct process
     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;
-- 
1.4.3.3



More information about the wine-patches mailing list