diff options
author | Frantisek Sumsal <frantisek@sumsal.cz> | 2023-03-18 13:58:27 +0100 |
---|---|---|
committer | Frantisek Sumsal <frantisek@sumsal.cz> | 2023-03-18 14:23:11 +0100 |
commit | 1da3cb81411e7c3d698fe20f95cc1c8145f2941c (patch) | |
tree | 520f0df7135e25623ec9c28830333aaa062c3442 /src/analyze/analyze-plot.c | |
parent | coccinelle: add a transformation for GNU conditionals (diff) | |
download | systemd-1da3cb81411e7c3d698fe20f95cc1c8145f2941c.tar.xz systemd-1da3cb81411e7c3d698fe20f95cc1c8145f2941c.zip |
tree-wide: simplify x ? x : y to x ?: y where applicable
Diffstat (limited to 'src/analyze/analyze-plot.c')
-rw-r--r-- | src/analyze/analyze-plot.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/analyze/analyze-plot.c b/src/analyze/analyze-plot.c index 0f39484f92..e44b9c11f6 100644 --- a/src/analyze/analyze-plot.c +++ b/src/analyze/analyze-plot.c @@ -89,7 +89,7 @@ static int acquire_host_info(sd_bus *bus, HostInfo **hi) { } r = bus_map_all_properties( - system_bus ? : bus, + system_bus ?: bus, "org.freedesktop.hostname1", "/org/freedesktop/hostname1", hostname_map, |