From 70d6e5bd991a733fda60700848fa5469bd518e03 Mon Sep 17 00:00:00 2001 From: Yu Watanabe Date: Thu, 28 Jun 2018 22:31:47 +0900 Subject: [PATCH] systemctl: make variable which stores environment variable constant --- src/systemctl/systemctl.c | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/src/systemctl/systemctl.c b/src/systemctl/systemctl.c index 9c6156237a2..05e253f5808 100644 --- a/src/systemctl/systemctl.c +++ b/src/systemctl/systemctl.c @@ -6778,11 +6778,9 @@ static int run_editor(char **paths) { if (r < 0) return r; if (r == 0) { - const char **args; - char *editor, **editor_args = NULL; - char **tmp_path, **original_path, *p; - size_t n_editor_args = 0, i = 1; - size_t argc; + char **editor_args = NULL, **tmp_path, **original_path, *p; + size_t n_editor_args = 0, i = 1, argc; + const char **args, *editor; argc = strv_length(paths)/2 + 1; -- 2.47.3