From: Alex Jia Date: Thu, 27 Oct 2011 07:17:59 +0000 (+0800) Subject: lxc: avoid missing '{' in the function X-Git-Tag: v0.9.7-rc1~32 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d2dff425985d7708601e8e7c95e2d8d394b03829;p=thirdparty%2Flibvirt.git lxc: avoid missing '{' in the function Cppcheck detected a syntaxError on lxcDomainInterfaceStats. * src/lxc/lxc_driver.c: fixed missing '{' in the function lxcDomainInterfaceStats. Signed-off-by: Alex Jia --- diff --git a/src/lxc/lxc_driver.c b/src/lxc/lxc_driver.c index f08e8d17c7..06bfa850b2 100644 --- a/src/lxc/lxc_driver.c +++ b/src/lxc/lxc_driver.c @@ -2671,6 +2671,7 @@ static int lxcDomainInterfaceStats(virDomainPtr dom, const char *path ATTRIBUTE_UNUSED, struct _virDomainInterfaceStats *stats ATTRIBUTE_UNUSED) +{ lxcError(VIR_ERR_NO_SUPPORT, "%s", __FUNCTION__); return -1; }