Skip to content

Commit

Permalink
audit: remove unnecessary semicolon in audit_mark_handle_event()
Browse files Browse the repository at this point in the history
The excess ; after the closing parenthesis is just code-noise it has no
and can be removed.

Signed-off-by: Nicholas Mc Guire <[email protected]>
[PM: tweaked subject line]
Signed-off-by: Paul Moore <[email protected]>
  • Loading branch information
hofrat authored and pcmoore committed May 2, 2017
1 parent b7a84de commit b5239fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kernel/audit_fsnotify.c
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ static int audit_mark_handle_event(struct fsnotify_group *group,
default:
BUG();
return 0;
};
}

if (mask & (FS_CREATE|FS_MOVED_TO|FS_DELETE|FS_MOVED_FROM)) {
if (audit_compare_dname_path(dname, audit_mark->path, AUDIT_NAME_FULL))
Expand Down

0 comments on commit b5239fb

Please sign in to comment.