diff options
author | Chihau Chau <chihau@gmail.com> | 2010-07-16 12:11:54 -0400 |
---|---|---|
committer | James Morris <jmorris@namei.org> | 2010-08-02 15:35:00 +1000 |
commit | dce3a3d2ee038d230323fe06b061dbaace6b8f94 (patch) | |
tree | 0c3f258fe162379db0fbbb2de783d8dbd8b15c92 /security/capability.c | |
parent | b8bc83ab4dcbc9938b95a90bbb50d89d1904d5ab (diff) | |
download | op-kernel-dev-dce3a3d2ee038d230323fe06b061dbaace6b8f94.zip op-kernel-dev-dce3a3d2ee038d230323fe06b061dbaace6b8f94.tar.gz |
Security: capability: code style issue
This fix a little code style issue deleting a space between a function
name and a open parenthesis.
Signed-off-by: Chihau Chau <chihau@gmail.com>
Acked-by: Andrew G. Morgan <morgan@kernel.org>
Signed-off-by: James Morris <jmorris@namei.org>
Diffstat (limited to 'security/capability.c')
-rw-r--r-- | security/capability.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/security/capability.c b/security/capability.c index 4aeb699..a0bbf30 100644 --- a/security/capability.c +++ b/security/capability.c @@ -27,7 +27,7 @@ static int cap_quota_on(struct dentry *dentry) return 0; } -static int cap_bprm_check_security (struct linux_binprm *bprm) +static int cap_bprm_check_security(struct linux_binprm *bprm) { return 0; } |