From ce1d986ec1ec45d9cd185bf6915ccad6e40f36e9 Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=A9mie=20Astor?= Date: Fri, 8 May 2020 21:51:17 +0200 Subject: [PATCH] :wrench: Fix AFL --- src/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) { -- 2.43.0