From 09f5fc66f24b250a1de6923284d01943191895e2 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Zbigniew=20J=C4=99drzejewski-Szmek?= Date: Thu, 10 Mar 2022 18:29:03 +0100 Subject: [PATCH] basic/env-file: inline one variable declaration --- src/basic/env-file.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/basic/env-file.c b/src/basic/env-file.c index 599b73bc22a..e268c5c644a 100644 --- a/src/basic/env-file.c +++ b/src/basic/env-file.c @@ -23,7 +23,6 @@ static int parse_env_file_internal( size_t n_key = 0, n_value = 0, last_value_whitespace = SIZE_MAX, last_key_whitespace = SIZE_MAX; _cleanup_free_ char *contents = NULL, *key = NULL, *value = NULL; unsigned line = 1; - char *p; int r; enum { @@ -46,7 +45,7 @@ static int parse_env_file_internal( if (r < 0) return r; - for (p = contents; *p; p++) { + for (char *p = contents; *p; p++) { char c = *p; switch (state) { -- 2.47.3