From: Colin Ian King Date: Fri, 15 Mar 2024 09:19:49 +0000 (+0000) Subject: udf: Remove second semicolon X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=8777446a3f2dd6dab0859e4aedef6e0240955fdb;p=linux.git udf: Remove second semicolon There is a statement with two semicolons. Remove the second one, it is redundant. Signed-off-by: Colin Ian King Signed-off-by: Jan Kara Message-Id: <20240315091949.2430585-1-colin.i.king@gmail.com> --- diff --git a/fs/udf/super.c b/fs/udf/super.c index 2217f7ed7a495..ba6b747a3830b 100644 --- a/fs/udf/super.c +++ b/fs/udf/super.c @@ -630,7 +630,7 @@ static int udf_parse_param(struct fs_context *fc, struct fs_parameter *param) if (!uopt->nls_map) { errorf(fc, "iocharset %s not found", param->string); - return -EINVAL;; + return -EINVAL; } } break;