From 67d0454dbb733950c3865aa222749338ddb82835 Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=A9mie=20Astor?= Date: Mon, 11 May 2020 00:15:34 +0200 Subject: [PATCH] :art: Simplify compile --- src/compile.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/compile.c b/src/compile.c index 8621b0a1..0b80a423 100644 --- a/src/compile.c +++ b/src/compile.c @@ -87,9 +87,6 @@ ANN static m_bool is_reg(const m_str path) { ANN static inline m_bool compiler_open(MemPool p, struct Compiler* c) { char name[strlen(c->name) + 1]; strcpy(name, c->name); -#ifdef __AFL_HAVE_MANUAL_CONTROL - if(strcmp(name, "afl")) -#endif if(c->type == COMPILE_FILE && !is_reg(name)) { gw_err(_("'%s': is a not a regular file\n"), name); return GW_ERROR; -- 2.43.0