diff options
author | Yu Watanabe <watanabe.yu+github@gmail.com> | 2024-10-09 22:29:05 +0200 |
---|---|---|
committer | Yu Watanabe <watanabe.yu+github@gmail.com> | 2024-10-09 22:29:08 +0200 |
commit | d866b0135f6d27e62d9c7e93052c1cccfba92827 (patch) | |
tree | a54d0d07ae4d399a5eaeaddf11f224670156e531 /src/core/mount.c | |
parent | Merge pull request #34687 from DaanDeMeyer/mkosi (diff) | |
download | systemd-d866b0135f6d27e62d9c7e93052c1cccfba92827.tar.xz systemd-d866b0135f6d27e62d9c7e93052c1cccfba92827.zip |
core/mount: fix typo
Follow-up for 00ad3f02275b507a753495ace5e5f84cb38b604d.
Diffstat (limited to '')
-rw-r--r-- | src/core/mount.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/mount.c b/src/core/mount.c index 5261b80957..0a403b6759 100644 --- a/src/core/mount.c +++ b/src/core/mount.c @@ -1884,7 +1884,7 @@ static int mount_load_proc_self_mountinfo(Manager *m, bool set_flags) { if (!device || !path) continue; - /* Just to achieve device name uniqueness. Note that the suppresion of the duplicate + /* Just to achieve device name uniqueness. Note that the suppression of the duplicate * processing is merely an optimization, hence in case of OOM (unlikely) we'll just process * it twice. */ if (set_put_strdup_full(&devices, &path_hash_ops_free, device) != 0) |