about summary refs log tree commit diff
path: root/include/afl-fuzz.h
diff options
context:
space:
mode:
authorhexcoder- <heiko@hexco.de>2020-09-04 22:26:39 +0200
committerhexcoder- <heiko@hexco.de>2020-09-04 22:26:39 +0200
commit0625eb0a051247c7b39df987289ad9a0e089a181 (patch)
treece36b004b31d8e441a11d727512632e4699d54ac /include/afl-fuzz.h
parent77b824d1014c3fb11804a2e91d28d155cd0f62d1 (diff)
downloadafl++-0625eb0a051247c7b39df987289ad9a0e089a181.tar.gz
avoid signed ints for amounts (which are positive)
Diffstat (limited to 'include/afl-fuzz.h')
-rw-r--r--include/afl-fuzz.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/afl-fuzz.h b/include/afl-fuzz.h
index 358cb5dc..1a05f4f4 100644
--- a/include/afl-fuzz.h
+++ b/include/afl-fuzz.h
@@ -945,7 +945,7 @@ void destroy_extras(afl_state_t *);
 
 /* Stats */
 
-void write_setup_file(afl_state_t *, int, char **);
+void write_setup_file(afl_state_t *, u32, char **);
 void write_stats_file(afl_state_t *, double, double, double);
 void maybe_update_plot_file(afl_state_t *, double, double);
 void show_stats(afl_state_t *);