winedump: Fix compiler warnings.

This commit is contained in:
André Hentschel 2014-10-13 22:44:11 +02:00 committed by Alexandre Julliard
parent d897db7605
commit 8fc9a84960
1 changed files with 3 additions and 3 deletions

View File

@ -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, ", ");
}
}