From: Andrea Bolognani Date: Wed, 7 Feb 2018 13:39:18 +0000 (+0100) Subject: util: Fix syntax-check X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=abb70bb3d40b865d06948a8f40777359073cd20b;p=thirdparty%2Flibvirt.git util: Fix syntax-check Broken by 759b4d1b0fe5f4d84d98b99153dfa7ac289dd167. Signed-off-by: Andrea Bolognani (cherry picked from commit 6ce3acc129bfdbe7fd02bcb8bbe8af6d13903684) --- diff --git a/src/util/virlog.c b/src/util/virlog.c index 05e0e199ee..056b53cda2 100644 --- a/src/util/virlog.c +++ b/src/util/virlog.c @@ -478,9 +478,8 @@ virLogHostnameString(char **rawmsg, if (!virLogHostname) return -1; - if (virAsprintfQuiet(&hoststr, "hostname: %s", virLogHostname) < 0) { + if (virAsprintfQuiet(&hoststr, "hostname: %s", virLogHostname) < 0) return -1; - } if (virLogFormatString(msg, 0, NULL, VIR_LOG_INFO, hoststr) < 0) { VIR_FREE(hoststr);