From d2bc932090d1b341921e50191fe1568820f05ca5 Mon Sep 17 00:00:00 2001 From: Anton Lindqvist Date: Thu, 17 Jan 2019 07:52:12 +0100 Subject: executor: unbreak on OpenBSD Commit b5df78dc ("all: support extra coverage") broke the executor on OpenBSD: executor/executor.cc:61:11: error: unused variable 'kExtraCoverSize' [-Werror,-Wunused-const-variable] const int kExtraCoverSize = 256 << 10; --- executor/common_linux.h | 1 + 1 file changed, 1 insertion(+) (limited to 'executor/common_linux.h') diff --git a/executor/common_linux.h b/executor/common_linux.h index 78d1e82a1..b6860e30d 100644 --- a/executor/common_linux.h +++ b/executor/common_linux.h @@ -9,6 +9,7 @@ #include #if SYZ_EXECUTOR +const int kExtraCoverSize = 256 << 10; struct cover_t; static void cover_reset(cover_t* cov); #endif -- cgit mrf-deployment