From 04e1ddbef26d4e78f1b2a900b799963023470ce4 Mon Sep 17 00:00:00 2001 From: Timo Sirainen Date: Mon, 9 Oct 2017 01:22:47 +0300 Subject: [PATCH] acl: Fix compiler warning with -Wstrict-bool --- src/plugins/acl/acl-backend-vfile.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/acl/acl-backend-vfile.c b/src/plugins/acl/acl-backend-vfile.c index e6fcc9408a..133eceb35a 100644 --- a/src/plugins/acl/acl-backend-vfile.c +++ b/src/plugins/acl/acl-backend-vfile.c @@ -456,7 +456,7 @@ acl_backend_vfile_read_with_retry(struct acl_object *aclobj, return ret <= 0 ? -1 : 0; } -static int +static bool acl_vfile_validity_has_changed(struct acl_backend_vfile *backend, const struct acl_vfile_validity *validity, const struct stat *st) -- 2.47.3