2013-03-03 15:33:59

by Viacheslav Dubeyko

[permalink] [raw]
Subject: [PATCH] posix_acl: fix warning in acl_by_type() function

From: Vyacheslav Dubeyko <[email protected]>
Subject: [PATCH] posix_acl: fix warning in acl_by_type() function

This patch fixes warning in function ‘acl_by_type’: include/linux/posix_acl.h:108:1: warning: control reaches end of non-void function [-Wreturn-type].

Signed-off-by: Vyacheslav Dubeyko <[email protected]>
---
include/linux/posix_acl.h | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/include/linux/posix_acl.h b/include/linux/posix_acl.h
index 7931efe..db1155a 100644
--- a/include/linux/posix_acl.h
+++ b/include/linux/posix_acl.h
@@ -102,9 +102,10 @@ static inline struct posix_acl **acl_by_type(struct inode *inode, int type)
return &inode->i_acl;
case ACL_TYPE_DEFAULT:
return &inode->i_default_acl;
- default:
- BUG();
}
+
+ BUG();
+ return NULL;
}

static inline struct posix_acl *get_cached_acl(struct inode *inode, int type)
--
1.7.9.5