lkml.org 
[lkml]   [2013]   [Mar]   [3]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
Subject[PATCH] posix_acl: fix warning in acl_by_type() function
From
Date
From: Vyacheslav Dubeyko <slava@dubeyko.com>
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 <slava@dubeyko.com>
---
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


--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/

\
 
 \ /
  Last update: 2013-03-03 17:21    [W:0.027 / U:1.816 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site