From bef69ae8780da17a807881d078247259170f868e Mon Sep 17 00:00:00 2001 From: Li kunyu Date: Tue, 15 Nov 2022 08:02:51 +0000 Subject: [PATCH] repart: Remove the repeated ';' from code (#25386) --- src/partition/repart.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/partition/repart.c b/src/partition/repart.c index 2709538b0c..4cdbeadf71 100644 --- a/src/partition/repart.c +++ b/src/partition/repart.c @@ -1510,7 +1510,7 @@ static int partition_read_definition(Partition *p, const char *path, const char r = path_extract_filename(path, &filename); if (r < 0) - return log_error_errno(r, "Failed to extract filename from path '%s': %m", path);; + return log_error_errno(r, "Failed to extract filename from path '%s': %m", path); dropin_dirname = strjoina(filename, ".d"); -- 2.25.1