Commit 6ccbcf32 by Laurent GUERBY Committed by Laurent Guerby

tb-gcc.c (trace_callback): Add casts to silence warning.

2009-06-27  Laurent GUERBY  <laurent@guerby.net>

	* tb-gcc.c (trace_callback): Add casts to silence warning.

From-SVN: r149018
parent 463d9ac4
2009-06-27 Laurent GUERBY <laurent@guerby.net>
* tb-gcc.c (trace_callback): Add casts to silence warning.
2009-06-27 Eric Botcazou <ebotcazou@adacore.com>
* tb-gcc.c: Fix copyright notice.
......
......@@ -81,7 +81,7 @@ trace_callback (struct _Unwind_Context * uw_context, uw_data_t * uw_data)
if (uw_data->n_entries_filled >= uw_data->max_len)
return _URC_NORMAL_STOP;
if (pc < uw_data->exclude_min || pc > uw_data->exclude_max)
if (pc < (char *)uw_data->exclude_min || pc > (char *)uw_data->exclude_max)
uw_data->traceback [uw_data->n_entries_filled ++] = pc + PC_ADJUST;
return _URC_NO_REASON;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment