On 06/11/2023 10:58 am, Olaf Hering wrote: > Mon, 6 Nov 2023 08:19:46 +0000 Alejandro Vallejo > <alejandro.vall...@cloud.com>: > >> + struct xen_sysctl sysctl = {0}; > What is that zero doing here? I think a plain {} will do it as well.
Indeed. It needs to be {} and not {0} to compile on some obsolete but still supported versions of GCC. ~Andrew