summaryrefslogtreecommitdiff
path: root/fuzz
diff options
context:
space:
mode:
authorNick Wellnhofer <wellnhofer@aevum.de>2022-10-25 19:23:07 +0200
committerNick Wellnhofer <wellnhofer@aevum.de>2022-10-25 19:34:38 +0200
commit128c0261c633cf14a8488f85ad1064333f98fd0e (patch)
treeb76c98c9dbc040edd9bef3470cf1983c9c79012b /fuzz
parentb6f1298ae7d670f2a9b307188df851a28f73d87d (diff)
downloadlibxml2-128c0261c633cf14a8488f85ad1064333f98fd0e.tar.gz
warnings: Fix -Wstrict-prototypes warning
Diffstat (limited to 'fuzz')
-rw-r--r--fuzz/fuzz.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fuzz/fuzz.c b/fuzz/fuzz.c
index be2f065b..0ac33198 100644
--- a/fuzz/fuzz.c
+++ b/fuzz/fuzz.c
@@ -90,7 +90,7 @@ xmlFuzzDataCleanup(void) {
* Read an integer from the fuzz data.
*/
int
-xmlFuzzReadInt() {
+xmlFuzzReadInt(void) {
int ret;
if (fuzzData.remaining < sizeof(int))