mirror of
https://github.com/reactos/reactos.git
synced 2025-02-22 08:25:03 +00:00
[WINESYNC] dbghelp: Fix misleading indentation warning.
Signed-off-by: Jacek Caban <jacek@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org> wine commit id 94ad6bd2e66f589303fe9102b9a81b1f3e8ea9c6 by Jacek Caban <jacek@codeweavers.com>
This commit is contained in:
parent
36388062cd
commit
aa015b65dc
2 changed files with 5 additions and 2 deletions
|
@ -762,7 +762,10 @@ compute_location(const struct module *module, dwarf2_traverse_context_t* ctx, st
|
|||
case DW_OP_eq: stack[stk-1] = (stack[stk-1] == stack[stk]); stk--; break;
|
||||
case DW_OP_ne: stack[stk-1] = (stack[stk-1] != stack[stk]); stk--; break;
|
||||
case DW_OP_skip: tmp = dwarf2_parse_u2(ctx); ctx->data += tmp; break;
|
||||
case DW_OP_bra: tmp = dwarf2_parse_u2(ctx); if (!stack[stk--]) ctx->data += tmp; break;
|
||||
case DW_OP_bra:
|
||||
tmp = dwarf2_parse_u2(ctx);
|
||||
if (!stack[stk--]) ctx->data += tmp;
|
||||
break;
|
||||
case DW_OP_regx:
|
||||
tmp = dwarf2_leb128_as_unsigned(ctx);
|
||||
if (!piece_found)
|
||||
|
|
|
@ -4,4 +4,4 @@ files:
|
|||
include/dbghelp.h: sdk/include/psdk/dbghelp.h
|
||||
include/wine/mscvpdb.h: sdk/include/reactos/wine/mscvpdb.h
|
||||
tags:
|
||||
wine: 9c2cedabc7c7b48c4f9042d444c45a3036cfd4be
|
||||
wine: 94ad6bd2e66f589303fe9102b9a81b1f3e8ea9c6
|
||||
|
|
Loading…
Reference in a new issue