From: John Ferlan Date: Thu, 23 Mar 2017 19:00:54 +0000 (-0400) Subject: qemu: Replace macro usage of (false); with just (0) X-Git-Tag: v3.2.0-rc1~144 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e3ff84edf52ee424456b85f9083e88c6a17bcd05;p=thirdparty%2Flibvirt.git qemu: Replace macro usage of (false); with just (0) Signed-off-by: John Ferlan --- diff --git a/src/qemu/qemu_conf.c b/src/qemu/qemu_conf.c index d3f318df07..34646bdd7e 100644 --- a/src/qemu/qemu_conf.c +++ b/src/qemu/qemu_conf.c @@ -275,7 +275,7 @@ virQEMUDriverConfigPtr virQEMUDriverConfigNew(bool privileged) cfg->defaultTLSx509certdir) < 0) \ goto error; \ } \ - } while (false); + } while (0) SET_TLS_X509_CERT_DEFAULT(vnc); SET_TLS_X509_CERT_DEFAULT(spice);