From a620de294d50f493aaa0a5be69ae65aeb334dc9e Mon Sep 17 00:00:00 2001 From: Stefano Brivio Date: Thu, 21 Oct 2021 12:09:25 +0200 Subject: qrap: Silence bogus clang-tidy bugprone-suspicious-missing-comma warning This is actually a concatenation -- mark it with an extra pair of parentheses. Signed-off-by: Stefano Brivio --- qrap.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'qrap.c') diff --git a/qrap.c b/qrap.c index 9a9a6ce..5a0a7fd 100644 --- a/qrap.c +++ b/qrap.c @@ -36,7 +36,7 @@ static char *qemu_names[] = { "kvm", "qemu-kvm", #ifdef ARCH - "qemu-system-" ARCH, + ( "qemu-system-" ARCH ), #endif "/usr/libexec/qemu-kvm", NULL, -- cgit v1.2.3