diff options
author | Nicholas Mc Guire <der.herr@hofr.at> | 2017-05-02 10:16:04 -0400 |
---|---|---|
committer | Paul Moore <paul@paul-moore.com> | 2017-05-02 10:16:04 -0400 |
commit | b5239fba69949a44290d4af517fc1c2eff3e36f6 (patch) | |
tree | 5b936a67039dcfbf0e4e89bfbc96c095dd7c5cdf | |
parent | b7a84deaf8d1b0e62b437a290a40d6380975f126 (diff) |
audit: remove unnecessary semicolon in audit_mark_handle_event()
The excess ; after the closing parenthesis is just code-noise it has no
and can be removed.
Signed-off-by: Nicholas Mc Guire <der.herr@hofr.at>
[PM: tweaked subject line]
Signed-off-by: Paul Moore <paul@paul-moore.com>
-rw-r--r-- | kernel/audit_fsnotify.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/audit_fsnotify.c b/kernel/audit_fsnotify.c index 7ea57e516029..b16a5bdcea0d 100644 --- a/kernel/audit_fsnotify.c +++ b/kernel/audit_fsnotify.c | |||
@@ -187,7 +187,7 @@ static int audit_mark_handle_event(struct fsnotify_group *group, | |||
187 | default: | 187 | default: |
188 | BUG(); | 188 | BUG(); |
189 | return 0; | 189 | return 0; |
190 | }; | 190 | } |
191 | 191 | ||
192 | if (mask & (FS_CREATE|FS_MOVED_TO|FS_DELETE|FS_MOVED_FROM)) { | 192 | if (mask & (FS_CREATE|FS_MOVED_TO|FS_DELETE|FS_MOVED_FROM)) { |
193 | if (audit_compare_dname_path(dname, audit_mark->path, AUDIT_NAME_FULL)) | 193 | if (audit_compare_dname_path(dname, audit_mark->path, AUDIT_NAME_FULL)) |