On 04/01/2016 07:41 PM, Pedro Alves wrote:
On 04/01/2016 11:21 AM, Marcel Böhme wrote:static inline void -d_append_num (struct d_print_info *dpi, long l) +d_append_num (struct d_print_info *dpi, int l) { char buf[25]; sprintf (buf,"%ld", l);Doesn't this warn about %ld format vs int type mismatch?
Well spotted. Marcel, please correct this issue and check for other warnings. Unless libiberty is somehow exempt from -Werror, this should have shown up in a bootstrap.
Bernd