diff options
author | Lennart Poettering <lennart@poettering.net> | 2018-12-13 22:11:32 +0100 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2018-12-14 08:22:54 +0100 |
commit | 9a6f746fb6e21dc4fe79ed93dde8b79371a13d34 (patch) | |
tree | 3893a2ce756b0326fd463a7d7244d2ad82a4f6fb /src/machine/machinectl.c | |
parent | Merge pull request #11046 from keszybz/generator-mains (diff) | |
download | systemd-9a6f746fb6e21dc4fe79ed93dde8b79371a13d34.tar.xz systemd-9a6f746fb6e21dc4fe79ed93dde8b79371a13d34.zip |
locale-util: prefix special glyph enum values with SPECIAL_GLYPH_
This has been irritating me for quite a while: let's prefix these enum
values with a common prefix, like we do for almost all other enums.
No change in behaviour, just some renaming.
Diffstat (limited to 'src/machine/machinectl.c')
-rw-r--r-- | src/machine/machinectl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/machine/machinectl.c b/src/machine/machinectl.c index 12b8d69cbd..44e6c76035 100644 --- a/src/machine/machinectl.c +++ b/src/machine/machinectl.c @@ -237,7 +237,7 @@ static int call_get_addresses(sd_bus *bus, const char *name, int ifi, const char if (truncate) { - if (!strextend(&addresses, special_glyph(ELLIPSIS), NULL)) + if (!strextend(&addresses, special_glyph(SPECIAL_GLYPH_ELLIPSIS), NULL)) return -ENOMEM; } |