winedump: Fix compiler warnings.
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 @@
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 @@
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 @@
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, ", ");
}
}