aboutsummaryrefslogtreecommitdiffstats
path: root/executor
diff options
context:
space:
mode:
authorMichael Tuexen <tuexen@fh-muenster.de>2020-05-13 15:49:58 +0200
committerDmitry Vyukov <dvyukov@google.com>2020-05-13 15:56:14 +0200
commitc7875f08e1736a5b3e9f615c8821ac86f3153350 (patch)
treeb4d9a4c1bdef7cacca4595aed636f63f2f8a3234 /executor
parent08381b1a9aa00b1cb255d4077a243f341e11388e (diff)
executor: fix #ifdef condition for remove_dir()
Diffstat (limited to 'executor')
-rw-r--r--executor/common.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/executor/common.h b/executor/common.h
index 04e51cd2a..501075c7c 100644
--- a/executor/common.h
+++ b/executor/common.h
@@ -185,7 +185,7 @@ static void use_temporary_dir(void)
#endif
#if GOOS_akaros || GOOS_netbsd || GOOS_freebsd || GOOS_openbsd || GOOS_test
-#if SYZ_EXECUTOR || SYZ_EXECUTOR_USES_FORK_SERVER && SYZ_REPEAT && SYZ_USE_TMP_DIR
+#if (SYZ_EXECUTOR || SYS_REPEAT) && SYZ_EXECUTOR_USES_FORK_SERVER && (SYZ_EXECUTOR || SYZ_USE_TMP_DIR)
#include <dirent.h>
#include <stdio.h>
#include <string.h>