From 1a0a89ca1814b562d64181a2a83c055bbb88deb3 Mon Sep 17 00:00:00 2001 From: Kern Sibbald Date: Sun, 30 Nov 2008 16:06:51 +0000 Subject: [PATCH] Fix type conversion casting git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@8095 91ce42f0-d328-0410-95d8-f526ca767f89 --- bacula/src/filed/acl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bacula/src/filed/acl.c b/bacula/src/filed/acl.c index 6561b50e53..6e17b198c6 100644 --- a/bacula/src/filed/acl.c +++ b/bacula/src/filed/acl.c @@ -239,7 +239,7 @@ static acl_type_t bac_to_os_acltype(bacl_type acltype) * This should never happen, as the per os version function only tries acl * types supported on a certain platform. */ - ostype = ACL_TYPE_NONE; + ostype = (acl_type_t)ACL_TYPE_NONE; break; } -- 2.39.5