From: Jérémie Astor Date: Fri, 8 May 2020 19:51:17 +0000 (+0200) Subject: :wrench: Fix AFL X-Git-Tag: nightly~1626 X-Git-Url: http://10.10.0.4:5575/?a=commitdiff_plain;h=ce1d986ec1ec45d9cd185bf6915ccad6e40f36e9;p=gwion.git :wrench: Fix AFL --- diff --git a/src/main.c b/src/main.c index 156e85fc..ede3938d 100644 --- a/src/main.c +++ b/src/main.c @@ -39,7 +39,7 @@ static void afl_run(const Gwion gwion) { } text_release(&text); } -#define gwion_run(a) { afl_run(a); return; } +#define gwion_run(a) { afl_run(a); return 0; } #endif int main(int argc, char** argv) {