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 <sbrivio@redhat.com>
This commit is contained in:
parent
685b50c3ce
commit
a620de294d
1 changed files with 1 additions and 1 deletions
2
qrap.c
2
qrap.c
|
@ -36,7 +36,7 @@ static char *qemu_names[] = {
|
||||||
"kvm",
|
"kvm",
|
||||||
"qemu-kvm",
|
"qemu-kvm",
|
||||||
#ifdef ARCH
|
#ifdef ARCH
|
||||||
"qemu-system-" ARCH,
|
( "qemu-system-" ARCH ),
|
||||||
#endif
|
#endif
|
||||||
"/usr/libexec/qemu-kvm",
|
"/usr/libexec/qemu-kvm",
|
||||||
NULL,
|
NULL,
|
||||||
|
|
Loading…
Reference in a new issue