diff options
-rw-r--r-- | src/systemctl/systemctl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/systemctl/systemctl.c b/src/systemctl/systemctl.c index e915f6f3cf..41f7b9f7aa 100644 --- a/src/systemctl/systemctl.c +++ b/src/systemctl/systemctl.c @@ -4547,7 +4547,7 @@ static int cat(sd_bus *bus, char **args) { _cleanup_strv_free_ char **names = NULL; char **name; bool first = true, avoid_bus_cache; - int r = 0; + int r; assert(args); @@ -4597,7 +4597,7 @@ static int cat(sd_bus *bus, char **args) { } } - return r < 0 ? r : 0; + return 0; } static int set_property(sd_bus *bus, char **args) { |