From 464ec1dec741e31d7bf08a4b7bb5a64a6adbb81d Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Fri, 17 Feb 2023 22:24:10 +0100 Subject: [PATCH] homectl: add missing break --- src/home/homectl.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/home/homectl.c b/src/home/homectl.c index fd71e98eef6..cd24b5e9a52 100644 --- a/src/home/homectl.c +++ b/src/home/homectl.c @@ -3638,6 +3638,7 @@ static int parse_argv(int argc, char *argv[]) { r = drop_from_identity("rebalanceWeight"); if (r < 0) return r; + break; } if (streq(optarg, "off")) @@ -3720,6 +3721,7 @@ static int parse_argv(int argc, char *argv[]) { r = drop_from_identity("dropCaches"); if (r < 0) return r; + break; } r = parse_boolean_argument("--drop-caches=", optarg, &drop_caches);