From: Nicholas Mc Guire Date: Tue, 2 May 2017 14:16:04 +0000 (-0400) Subject: audit: remove unnecessary semicolon in audit_mark_handle_event() X-Git-Tag: Ubuntu-5.13.0-19.19~13579^2~12 X-Git-Url: https://git.proxmox.com/?a=commitdiff_plain;h=b5239fba69949a44290d4af517fc1c2eff3e36f6;p=mirror_ubuntu-jammy-kernel.git 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 [PM: tweaked subject line] Signed-off-by: Paul Moore --- 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, 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))