diff options
author | Fabian Frederick <fabf@skynet.be> | 2014-06-03 22:05:10 +0200 |
---|---|---|
committer | Eric Paris <eparis@redhat.com> | 2014-09-23 16:37:51 -0400 |
commit | 6eed9b261334932c742458edd64b7b9fd0b981a9 (patch) | |
tree | dffe858ac17b9740a16e901a6a913d9001f42bd9 | |
parent | 691e6d59d2b6cdb4595e5f626503a1c9e98b8baf (diff) | |
download | linux-stable-6eed9b261334932c742458edd64b7b9fd0b981a9.tar.gz linux-stable-6eed9b261334932c742458edd64b7b9fd0b981a9.tar.bz2 linux-stable-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.c | 2 |
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 */ |