From: Zbigniew Jędrzejewski-Szmek Date: Thu, 22 Feb 2024 09:36:52 +0000 (+0100) Subject: shared/pretty-print: rename output parameters X-Git-Tag: v256-rc1~601^2~10 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6812498cb24eb44397a150e6c7754033495f9442;p=thirdparty%2Fsystemd.git shared/pretty-print: rename output parameters --- diff --git a/src/shared/pretty-print.c b/src/shared/pretty-print.c index 3de193e2642..f3a8891a79e 100644 --- a/src/shared/pretty-print.c +++ b/src/shared/pretty-print.c @@ -308,7 +308,7 @@ void print_separator(void) { fputs("\n\n", stdout); } -static int guess_type(const char **name, char ***prefixes, bool *is_collection, const char **extension) { +static int guess_type(const char **name, char ***ret_prefixes, bool *ret_is_collection, const char **ret_extension) { /* Try to figure out if name is like tmpfiles.d/ or systemd/system-presets/, * i.e. a collection of directories without a main config file. * Incidentally, all those formats don't use sections. So we return a single @@ -355,9 +355,9 @@ static int guess_type(const char **name, char ***prefixes, bool *is_collection, ext = ".preset"; } - *prefixes = (char**) (run ? run_prefixes : std_prefixes); - *is_collection = coll; - *extension = ext; + *ret_prefixes = (char**) (run ? run_prefixes : std_prefixes); + *ret_is_collection = coll; + *ret_extension = ext; return 0; }