diff options
| author | Anton Lindqvist <anton@basename.se> | 2019-01-17 07:52:12 +0100 |
|---|---|---|
| committer | Dmitry Vyukov <dvyukov@google.com> | 2019-01-19 18:19:10 +0100 |
| commit | d2bc932090d1b341921e50191fe1568820f05ca5 (patch) | |
| tree | 42746bbe86b51a2ec884a1ee180cb19de6a20f49 /executor/executor.cc | |
| parent | 528f444be9e838a093db13244ce689d4e70b5856 (diff) | |
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;
Diffstat (limited to 'executor/executor.cc')
| -rw-r--r-- | executor/executor.cc | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/executor/executor.cc b/executor/executor.cc index a0357c188..d1d1f2694 100644 --- a/executor/executor.cc +++ b/executor/executor.cc @@ -58,7 +58,6 @@ const int kOutPipeFd = kMaxFd - 2; // remapped from stdout const int kCoverFd = kOutPipeFd - kMaxThreads; const int kMaxArgs = 9; const int kCoverSize = 256 << 10; -const int kExtraCoverSize = 256 << 10; const int kFailStatus = 67; const int kRetryStatus = 69; const int kErrorStatus = 68; |
