summaryrefslogtreecommitdiff
path: root/src/analyze/analyze-plot.c
diff options
context:
space:
mode:
authorFrantisek Sumsal <frantisek@sumsal.cz>2023-03-18 13:58:27 +0100
committerFrantisek Sumsal <frantisek@sumsal.cz>2023-03-18 14:23:11 +0100
commit1da3cb81411e7c3d698fe20f95cc1c8145f2941c (patch)
tree520f0df7135e25623ec9c28830333aaa062c3442 /src/analyze/analyze-plot.c
parent64254629f7e062a39156ee95428d46f2a1e82e06 (diff)
downloadsystemd-1da3cb81411e7c3d698fe20f95cc1c8145f2941c.tar.gz
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.c2
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,