summaryrefslogtreecommitdiffstats
path: root/src/partition/repart.c
diff options
context:
space:
mode:
authorLi kunyu <kunyu@nfschina.com>2022-11-15 09:02:51 +0100
committerGitHub <noreply@github.com>2022-11-15 09:02:51 +0100
commitbef69ae8780da17a807881d078247259170f868e (patch)
treeff27885fbc717b76ac89d3f75aec9dfd551ce4ec /src/partition/repart.c
parentMerge pull request #24908 from DaanDeMeyer/repart-minimize (diff)
downloadsystemd-bef69ae8780da17a807881d078247259170f868e.tar.xz
systemd-bef69ae8780da17a807881d078247259170f868e.zip
repart: Remove the repeated ';' from code (#25386)
Diffstat (limited to '')
-rw-r--r--src/partition/repart.c2
1 files changed, 1 insertions, 1 deletions
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");