]> Nishi Git Mirror - gwion.git/commitdiff
:art: Simplify compile
authorJérémie Astor <astor.jeremie@wanadoo.fr>
Sun, 10 May 2020 22:15:34 +0000 (00:15 +0200)
committerJérémie Astor <astor.jeremie@wanadoo.fr>
Sun, 10 May 2020 22:15:34 +0000 (00:15 +0200)
src/compile.c

index 8621b0a1f1a7977c015f7e84e654b8e62db13648..0b80a42344b96fee8b0b0c685417864d64eb2bb8 100644 (file)
@@ -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;