=?UTF-8?Q?Andr=C3=A9=20Hentschel=20?=: winedump: Fix compiler warnings.

Alexandre Julliard julliard at wine.codeweavers.com
Tue Oct 14 09:37:29 CDT 2014


Module: wine
Branch: master
Commit: 8fc9a84960ad146b805e925bdf387729453624a4
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=8fc9a84960ad146b805e925bdf387729453624a4

Author: André Hentschel <nerv at dawncrow.de>
Date:   Mon Oct 13 22:44:11 2014 +0200

winedump: Fix compiler warnings.

---

 tools/winedump/pe.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/tools/winedump/pe.c b/tools/winedump/pe.c
index 36ea137..aedd98e 100644
--- a/tools/winedump/pe.c
+++ b/tools/winedump/pe.c
@@ -790,7 +790,7 @@ static void dump_armnt_unwind_info( const struct runtime_function_armnt *fnc )
             if (fnc->u.s.C || fnc->u.s.L)
             {
                 strcat(intregs, ", ");
-                if (fnc->u.s.C || fnc->u.s.L && !fnc->u.s.H)
+                if (fnc->u.s.C || (fnc->u.s.L && !fnc->u.s.H))
                     strcat(intregspop, ", ");
             }
         }
@@ -810,7 +810,7 @@ static void dump_armnt_unwind_info( const struct runtime_function_armnt *fnc )
             if (fnc->u.s.C || fnc->u.s.L)
             {
                 strcat(intregs, ", ");
-                if (fnc->u.s.C || fnc->u.s.L && !fnc->u.s.H)
+                if (fnc->u.s.C || (fnc->u.s.L && !fnc->u.s.H))
                     strcat(intregspop, ", ");
             }
         }
@@ -822,7 +822,7 @@ static void dump_armnt_unwind_info( const struct runtime_function_armnt *fnc )
             if (fnc->u.s.C || fnc->u.s.L)
             {
                 strcat(intregs, ", ");
-                if (fnc->u.s.C || fnc->u.s.L && !fnc->u.s.H)
+                if (fnc->u.s.C || (fnc->u.s.L && !fnc->u.s.H))
                     strcat(intregspop, ", ");
             }
         }




More information about the wine-cvs mailing list