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 | 9aab4f4ea7a4ca80ec3e0269ce2eb71a24f6fef9 (patch) | |
tree | c5a04148fb8b3e905379245cf9e0f65b60db263d | |
parent | b5239fba69949a44290d4af517fc1c2eff3e36f6 (diff) | |
download | linux-9aab4f4ea7a4ca80ec3e0269ce2eb71a24f6fef9.tar.bz2 |
audit: remove unnecessary semicolon in audit_watch_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_watch.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/audit_watch.c b/kernel/audit_watch.c index f79e4658433d..e293165dd063 100644 --- a/kernel/audit_watch.c +++ b/kernel/audit_watch.c @@ -492,7 +492,7 @@ static int audit_watch_handle_event(struct fsnotify_group *group, BUG(); inode = NULL; break; - }; + } if (mask & (FS_CREATE|FS_MOVED_TO) && inode) audit_update_watch(parent, dname, inode->i_sb->s_dev, inode->i_ino, 0); |