Skip to content

Commit

Permalink
fixed gcc 10 warning
Browse files Browse the repository at this point in the history
  • Loading branch information
domenukk committed Oct 5, 2020
1 parent bab60b6 commit fd4efd0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/afl-fuzz-stats.c
Original file line number Diff line number Diff line change
Expand Up @@ -955,7 +955,7 @@ void show_stats(afl_state_t *afl) {
#else

SAYF("%s" cGRA " [cpu:%s%3u%%" cGRA "]\r" cRST, spacing, cpu_color,
MIN(cur_utilization, 999));
MIN(cur_utilization, (u32)999));

#endif /* ^HAVE_AFFINITY */

Expand Down

0 comments on commit fd4efd0

Please sign in to comment.