On Mon, 15 Jul 2019 at 15:04, Daniel P. Berrangé <[email protected]> wrote: > MultiFDInit_t msg = {0}; > > should fix it.
A minor nit, but "= {}" is our standard struct-zero-initializer
so we should prefer that, I think. (I know it is not the C-spec
recommended version but some C compilers incorrectly warn about
"= {0}" whereas no compiler we care about warns about the
gnu-extension "= {}".)
thanks
-- PMM
