From: Michal Privoznik Date: Wed, 17 Feb 2016 13:25:35 +0000 (+0100) Subject: vircgroup: Update virCgroupDenyDevicePath stub X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=6bfb03ae15b3f336076b4009d009969bb7ec578c;p=libvirt.git vircgroup: Update virCgroupDenyDevicePath stub In cf113e8d we changed the declaration of virCgroupAllowDevicePath() and virCgroupDenyDevicePath(). However, while updating the stub for non-cgroup platforms for the former we forgot to update the latter too causing a build failure. Signed-off-by: Michal Privoznik --- diff --git a/src/util/vircgroup.c b/src/util/vircgroup.c index d032c604e3..38398fd7d5 100644 --- a/src/util/vircgroup.c +++ b/src/util/vircgroup.c @@ -4689,7 +4689,8 @@ virCgroupDenyDevice(virCgroupPtr group ATTRIBUTE_UNUSED, int virCgroupDenyDevicePath(virCgroupPtr group ATTRIBUTE_UNUSED, const char *path ATTRIBUTE_UNUSED, - int perms ATTRIBUTE_UNUSED) + int perms ATTRIBUTE_UNUSED, + bool ignoreEacces ATTRIBUTE_UNUSED) { virReportSystemError(ENOSYS, "%s", _("Control groups not supported on this platform"));