1
1
mirror of https://github.com/systemd/systemd-stable.git synced 2025-03-10 00:58:20 +03:00

repart: Remove the repeated ';' from code (#25386)

This commit is contained in:
Li kunyu 2022-11-15 08:02:51 +00:00 committed by GitHub
parent 32a3f802f6
commit bef69ae878
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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");