Re: [PATCH] vhost: fix build with gcc 4.8

2023-07-06 Thread Maxime Coquelin
On 7/3/23 10:21, Ali Alnubani wrote: Adds braces around initializer to resolve the following false-positive build error with gcc 4.8.5 on CentOS: lib/vhost/vduse.c:441:9: error: missing braces around initializer [-Werror=missing-braces] Fixes: 653327e191f0 ("vhost: add multiqueue support t

Re: [PATCH] vhost: fix build with gcc 4.8

2023-07-03 Thread Maxime Coquelin
Hi Ali, On 7/3/23 10:21, Ali Alnubani wrote: Adds braces around initializer to resolve the following false-positive build error with gcc 4.8.5 on CentOS: lib/vhost/vduse.c:441:9: error: missing braces around initializer [-Werror=missing-braces] Fixes: 653327e191f0 ("vhost: add multiqueue sup

[PATCH] vhost: fix build with gcc 4.8

2023-07-03 Thread Ali Alnubani
Adds braces around initializer to resolve the following false-positive build error with gcc 4.8.5 on CentOS: lib/vhost/vduse.c:441:9: error: missing braces around initializer [-Werror=missing-braces] Fixes: 653327e191f0 ("vhost: add multiqueue support to VDUSE") Cc: maxime.coque...@redhat.com S