summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFabian Frederick2014-06-03 22:05:10 +0200
committerEric Paris2014-09-23 22:37:51 +0200
commit6eed9b261334932c742458edd64b7b9fd0b981a9 (patch)
treedffe858ac17b9740a16e901a6a913d9001f42bd9
parentaudit: reduce scope of audit_log_fcaps (diff)
downloadkernel-qcow2-linux-6eed9b261334932c742458edd64b7b9fd0b981a9.tar.gz
kernel-qcow2-linux-6eed9b261334932c742458edd64b7b9fd0b981a9.tar.xz
kernel-qcow2-linux-6eed9b261334932c742458edd64b7b9fd0b981a9.zip
kernel/audit.c: use ARRAY_SIZE instead of sizeof/sizeof[0]
Use kernel.h definition. Cc: Eric Paris <eparis@redhat.com> Cc: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Fabian Frederick <fabf@skynet.be> Signed-off-by: Richard Guy Briggs <rgb@redhat.com>
-rw-r--r--kernel/audit.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/audit.c b/kernel/audit.c
index de991950091f..8a82d481393d 100644
--- a/kernel/audit.c
+++ b/kernel/audit.c
@@ -750,7 +750,7 @@ static int audit_set_feature(struct sk_buff *skb)
struct audit_features *uaf;
int i;
- BUILD_BUG_ON(AUDIT_LAST_FEATURE + 1 > sizeof(audit_feature_names)/sizeof(audit_feature_names[0]));
+ BUILD_BUG_ON(AUDIT_LAST_FEATURE + 1 > ARRAY_SIZE(audit_feature_names));
uaf = nlmsg_data(nlmsg_hdr(skb));
/* if there is ever a version 2 we should handle that here */