* coffcode.h (coff_slurp_line_table): Add cast to unsigned int.
+2014-11-13 H.J. Lu <hongjiu.lu@intel.com>
+
+ * coffcode.h (coff_slurp_line_table): Add cast to unsigned int.
+
2014-11-13 H.J. Lu <hongjiu.lu@intel.com>
* coffcode.h (coff_pointerize_aux_hook): Fix a typo.
if (lineno_cache[i].line_number == 0)
*p++ = &lineno_cache[i];
- BFD_ASSERT ((p - func_table) == nbr_func);
+ BFD_ASSERT ((unsigned int) (p - func_table) == nbr_func);
/* Sort by functions. */
qsort (func_table, nbr_func, sizeof (alent *), coff_sort_func_alent);