]> git.ipfire.org Git - thirdparty/systemd.git/blobdiff - src/analyze/analyze.c
tree-wide: drop {} from one-line if blocks
[thirdparty/systemd.git] / src / analyze / analyze.c
index e38a4340b66606e7244b9aad5a6d17b5bbdbadbe..bce8026f40474dba7bdf9ab7b20ed4f8c9356fa5 100644 (file)
@@ -844,11 +844,8 @@ static int list_dependencies_one(sd_bus *bus, const char *name, unsigned int lev
 
         STRV_FOREACH(c, deps) {
                 times = hashmap_get(unit_times_hashmap, *c);
-                if (times && times->activated
-                    && times->activated <= boot->finish_time
-                    && (service_longest - times->activated) <= arg_fuzz) {
+                if (times && times->activated && times->activated <= boot->finish_time && (service_longest - times->activated) <= arg_fuzz)
                         to_print++;
-                }
         }
 
         if (!to_print)