chiark / gitweb /
treewide: yet more log_*_errno + return simplifications
[elogind.git] / src / libsystemd / sd-bus / test-bus-server.c
index e65811f0471cbd29b2e5e3c8984a327fd6aeaf9a..5f807c3b1e11f25826040614087f359e37815cbb 100644 (file)
@@ -146,10 +146,8 @@ static int client(struct context *c) {
                         "/",
                         "org.freedesktop.systemd.test",
                         "Exit");
-        if (r < 0) {
-                log_error_errno(r, "Failed to allocate method call: %m");
-                return r;
-        }
+        if (r < 0)
+                return log_error_errno(r, "Failed to allocate method call: %m");
 
         r = sd_bus_call(bus, m, 0, &error, &reply);
         if (r < 0) {