From 6a6b10be7642e59ae40f9911282a8e2aa2601d82 Mon Sep 17 00:00:00 2001 From: Mattias Andrée Date: Sat, 8 Mar 2025 13:27:09 +0100 Subject: misc MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Mattias Andrée --- src/config-ini.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/config-ini.c') diff --git a/src/config-ini.c b/src/config-ini.c index db94f22..c524605 100644 --- a/src/config-ini.c +++ b/src/config-ini.c @@ -193,19 +193,19 @@ try_path(const struct env_path *path_spec, char **path_out) stpcpy(&path[len], path_spec->suffix); f = fopen(path, "r"); if (f) { - weprintf(_("Found configuration file `%s'.")); + weprintf(_("Found configuration file `%s'."), path); break; } else if (errno != ENOENT) { - eprintf("fopen %s \"%s\":", path); + eprintf("fopen %s \"r\":", path); } } } else { stpcpy(stpcpy(path, prefix), path_spec->suffix); f = fopen(path, "r"); if (f) - weprintf(_("Found configuration file `%s'.")); + weprintf(_("Found configuration file `%s'."), path); else if (errno != ENOENT) - eprintf("fopen %s \"%s\":", path); + eprintf("fopen %s \"r\":", path); } if (f) { -- cgit v1.2.3-70-g09d2