rcxml,theme: update info() message

This commit is contained in:
Johan Malm 2020-10-13 19:41:55 +01:00
parent 8cf6b4203e
commit 678d327d6f
2 changed files with 2 additions and 2 deletions

View file

@ -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');

View file

@ -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) {