summaryrefslogtreecommitdiff
path: root/src/partition
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2022-02-16 14:53:34 +0100
committerLennart Poettering <lennart@poettering.net>2022-02-16 22:40:06 +0100
commitfc03e80c6b19521ecf4f3af06865b2054e685f9a (patch)
tree4129825bb6d05f3a67c85a215f186136e4c21f3d /src/partition
parent3414394e0b978501a4b0dd9c4582a60ffce238e9 (diff)
downloadsystemd-fc03e80c6b19521ecf4f3af06865b2054e685f9a.tar.gz
glyph-util: add new glyphs for up/down arrows
Diffstat (limited to 'src/partition')
-rw-r--r--src/partition/repart.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/partition/repart.c b/src/partition/repart.c
index abdf947dbf..91645202fc 100644
--- a/src/partition/repart.c
+++ b/src/partition/repart.c
@@ -1969,9 +1969,9 @@ static int format_size_change(uint64_t from, uint64_t to, char **ret) {
if (from == to || to == UINT64_MAX)
t = strdup(FORMAT_BYTES(from));
else
- t = strjoin(FORMAT_BYTES(from), " ", special_glyph(SPECIAL_GLYPH_ARROW), " ", FORMAT_BYTES(to));
+ t = strjoin(FORMAT_BYTES(from), " ", special_glyph(SPECIAL_GLYPH_ARROW_RIGHT), " ", FORMAT_BYTES(to));
} else if (to != UINT64_MAX)
- t = strjoin(special_glyph(SPECIAL_GLYPH_ARROW), " ", FORMAT_BYTES(to));
+ t = strjoin(special_glyph(SPECIAL_GLYPH_ARROW_RIGHT), " ", FORMAT_BYTES(to));
else {
*ret = NULL;
return 0;