From 43f1389ddccb58a4c1a335db9c8c93a622572671 Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Tue, 4 Aug 2020 13:28:47 +0200 Subject: Makefile: enable clang-tidy in presubmit tests Fix all errors it points to. The one in netlink_send_ext is concerning. --- executor/kvm_gen.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'executor/kvm_gen.cc') diff --git a/executor/kvm_gen.cc b/executor/kvm_gen.cc index ce3a4d6de..92627208b 100644 --- a/executor/kvm_gen.cc +++ b/executor/kvm_gen.cc @@ -5,8 +5,8 @@ #include -#define PRINT(x) \ - extern const unsigned char x[], x##_end[]; \ +#define PRINT(x) \ + extern const unsigned char(x)[], x##_end[]; \ print(#x, x, x##_end); void print(const char* name, const unsigned char* start, const unsigned char* end) -- cgit mrf-deployment