aboutsummaryrefslogtreecommitdiffstats
path: root/executor/executor.cc
diff options
context:
space:
mode:
authorDmitry Vyukov <dvyukov@google.com>2020-08-06 14:55:39 +0200
committerDmitry Vyukov <dvyukov@google.com>2020-08-06 15:27:41 +0200
commitcb436c69d9bcb0330518a48559649c9436ed5e7a (patch)
tree1b1d474ad40b0748d3565c51938c1ed79b23f83e /executor/executor.cc
parent56fe5665461fbbc19704e44c23e42d5f6ecb5361 (diff)
executor: add some code style checks
Move the test from pkg/csource to executor/ in order to be able to (1) run it on *.cc files, (2) run on unprocessed *.h files, (3) produce line numbers. Add a check for missed space after //.
Diffstat (limited to 'executor/executor.cc')
-rw-r--r--executor/executor.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/executor/executor.cc b/executor/executor.cc
index 5b7371b1d..04d0259f6 100644
--- a/executor/executor.cc
+++ b/executor/executor.cc
@@ -362,7 +362,7 @@ int main(int argc, char** argv)
}
if (argc >= 2 && strcmp(argv[1], "setup_kcsan_filterlist") == 0) {
#if SYZ_HAVE_KCSAN
- setup_kcsan_filterlist(argv + 2, argc - 2, /*suppress=*/true);
+ setup_kcsan_filterlist(argv + 2, argc - 2, true);
#else
fail("KCSAN is not implemented");
#endif