From 678d327d6f48f26ddd9f53b7191d0ff08143a0fc Mon Sep 17 00:00:00 2001 From: Johan Malm Date: Tue, 13 Oct 2020 19:41:55 +0100 Subject: [PATCH] rcxml,theme: update info() message --- src/config/rcxml.c | 2 +- src/theme/theme.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/config/rcxml.c b/src/config/rcxml.c index 3198b71b..5aab7d92 100644 --- a/src/config/rcxml.c +++ b/src/config/rcxml.c @@ -364,7 +364,7 @@ rcxml_read(const char *filename) warn("cannot read (%s)", rcxml); goto no_config; } - info("reading config file (%s)", rcxml); + info("read config file (%s)", rcxml); buf_init(&b); while (getline(&line, &len, stream) != -1) { char *p = strrchr(line, '\n'); diff --git a/src/theme/theme.c b/src/theme/theme.c index ffc1e7e3..24663a53 100644 --- a/src/theme/theme.c +++ b/src/theme/theme.c @@ -109,7 +109,7 @@ theme_read(const char *theme_name) theme_builtin(); return; } - info("reading themerc (%s)", themerc); + info("read themerc (%s)", themerc); while (getline(&line, &len, stream) != -1) { char *p = strrchr(line, '\n'); if (p) { -- 2.52.0