From f2de2be0e3453cdfa1d9eebd4d4361720ab60aff 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 3709999185..b6af2fa06c 100644 --- a/src/plugins/acl/acl-backend-vfile.c +++ b/src/plugins/acl/acl-backend-vfile.c @@ -455,7 +455,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