summaryrefslogtreecommitdiffstats
path: root/src/partition
diff options
context:
space:
mode:
authorYu Watanabe <watanabe.yu+github@gmail.com>2021-11-30 10:26:17 +0100
committerLuca Boccassi <luca.boccassi@gmail.com>2021-11-30 13:30:07 +0100
commita6f44d610c1b1064c95ad0fef59ebc093a2a401a (patch)
tree1d78de487237a3ba0bdcd29df52087274b7d0db7 /src/partition
parentMerge pull request #21568 from yuwata/network-fix-json-format (diff)
downloadsystemd-a6f44d610c1b1064c95ad0fef59ebc093a2a401a.tar.xz
systemd-a6f44d610c1b1064c95ad0fef59ebc093a2a401a.zip
tree-wide: fix typo
Diffstat (limited to 'src/partition')
-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 50b1f45315..f1af5bb0ee 100644
--- a/src/partition/repart.c
+++ b/src/partition/repart.c
@@ -1480,7 +1480,7 @@ static int determine_current_padding(
offset = round_up_size(offset, 4096);
next = round_down_size(next, 4096);
- *ret = LESS_BY(next, offset); /* Saturated substraction, rounding might have fucked things up */
+ *ret = LESS_BY(next, offset); /* Saturated subtraction, rounding might have fucked things up */
return 0;
}