Browse Source

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>
Nicholas Mc Guire 8 years ago
parent
commit
b5239fba69
1 changed files with 1 additions and 1 deletions
  1. 1 1
      kernel/audit_fsnotify.c

+ 1 - 1
kernel/audit_fsnotify.c

@@ -187,7 +187,7 @@ static int audit_mark_handle_event(struct fsnotify_group *group,
 	default:
 	default:
 		BUG();
 		BUG();
 		return 0;
 		return 0;
-	};
+	}
 
 
 	if (mask & (FS_CREATE|FS_MOVED_TO|FS_DELETE|FS_MOVED_FROM)) {
 	if (mask & (FS_CREATE|FS_MOVED_TO|FS_DELETE|FS_MOVED_FROM)) {
 		if (audit_compare_dname_path(dname, audit_mark->path, AUDIT_NAME_FULL))
 		if (audit_compare_dname_path(dname, audit_mark->path, AUDIT_NAME_FULL))