diff options
author | Colin Ian King <colin.king@canonical.com> | 2016-01-20 11:13:46 +0000 |
---|---|---|
committer | Mimi Zohar <zohar@linux.vnet.ibm.com> | 2016-02-08 18:17:38 -0500 |
commit | c75d8e96f377b59b887a81b31adb00dd1957c3c8 (patch) | |
tree | 4d77e79a7e7b021ca04bd2bacf16e82b73d8cf33 /security/integrity | |
parent | 388f7b1d6e8ca06762e2454d28d6c3c55ad0fe95 (diff) | |
download | blackbird-op-linux-c75d8e96f377b59b887a81b31adb00dd1957c3c8.tar.gz blackbird-op-linux-c75d8e96f377b59b887a81b31adb00dd1957c3c8.zip |
IMA: fix non-ANSI declaration of ima_check_policy()
ima_check_policy() has no parameters, so use the normal void
parameter convention to make it match the prototype in the header file
security/integrity/ima/ima.h
Signed-off-by: Colin Ian King <colin.king@canonical.com>
Signed-off-by: Mimi Zohar <zohar@linux.vnet.ibm.com>
Diffstat (limited to 'security/integrity')
-rw-r--r-- | security/integrity/ima/ima_policy.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/security/integrity/ima/ima_policy.c b/security/integrity/ima/ima_policy.c index 0a3b781f18e5..e0e18cc5930a 100644 --- a/security/integrity/ima/ima_policy.c +++ b/security/integrity/ima/ima_policy.c @@ -417,7 +417,7 @@ void __init ima_init_policy(void) } /* Make sure we have a valid policy, at least containing some rules. */ -int ima_check_policy() +int ima_check_policy(void) { if (list_empty(&ima_temp_rules)) return -EINVAL; |