From: Jérémie Astor Date: Sun, 10 May 2020 22:15:34 +0000 (+0200) Subject: :art: Simplify compile X-Git-Tag: nightly~1583 X-Git-Url: http://10.10.0.4:5575/?a=commitdiff_plain;h=67d0454dbb733950c3865aa222749338ddb82835;p=gwion.git :art: Simplify compile --- 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;