diff options
author | Atul Kumar Pant <atulpant.linux@gmail.com> | 2023-08-16 02:15:53 +0530 |
---|---|---|
committer | Paul Moore <paul@paul-moore.com> | 2023-08-15 18:09:20 -0400 |
commit | 62acadda115a94bffd1f6b36acbb67e3f04811be (patch) | |
tree | b4c8b2a7aceab73185dbf7add17f1a9a71a29a40 /kernel/auditsc.c | |
parent | b59bc6e37237e37eadf50cd5de369e913f524463 (diff) |
audit: add space before parenthesis and around '=', "==", and '<'
Fixes following checkpatch.pl issue:
ERROR: space required before the open parenthesis '('
ERROR: spaces required around that '='
ERROR: spaces required around that '<'
ERROR: spaces required around that '=='
Signed-off-by: Atul Kumar Pant <atulpant.linux@gmail.com>
[PM: subject line tweaks]
Signed-off-by: Paul Moore <paul@paul-moore.com>
Diffstat (limited to 'kernel/auditsc.c')
-rw-r--r-- | kernel/auditsc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/auditsc.c b/kernel/auditsc.c index 8dfd581cd554..e89d397f2148 100644 --- a/kernel/auditsc.c +++ b/kernel/auditsc.c @@ -2124,7 +2124,7 @@ retry: d = dentry; rcu_read_lock(); seq = read_seqbegin(&rename_lock); - for(;;) { + for (;;) { struct inode *inode = d_backing_inode(d); if (inode && unlikely(inode->i_fsnotify_marks)) { |