From: Petr Machata Date: Mon, 30 Mar 2009 13:05:39 +0000 (+0200) Subject: dwarflint: Change one error to message X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=009d2fe56044177f546012c367a2a558a0fe8663;p=thirdparty%2Felfutils.git dwarflint: Change one error to message --- diff --git a/src/dwarflint.c b/src/dwarflint.c index 9cc378478..07e30bc75 100644 --- a/src/dwarflint.c +++ b/src/dwarflint.c @@ -4222,8 +4222,9 @@ check_location_expression (struct read_ctx *parent_ctx, || opcode == DW_OP_deref_size || opcode == DW_OP_plus_uconst) && (value1 > (uint64_t)(uint32_t)-1)) - wr_error (&where, ": %s with operand %#" PRIx64 " on 32-bit machine.\n", - dwarf_locexpr_opcode_string (opcode), value1); + wr_message (mc_loc | mc_acc_bloat | mc_impact_3, &where, + ": %s with operand %#" PRIx64 " on 32-bit machine.\n", + dwarf_locexpr_opcode_string (opcode), value1); }; }