aboutsummaryrefslogtreecommitdiffstats
path: root/colorize.c
diff options
context:
space:
mode:
authorGravatar Steven Schubiger <stsc@refcnt.org> 2020-03-26 20:51:30 +0100
committerGravatar Steven Schubiger <stsc@refcnt.org> 2020-03-26 20:51:30 +0100
commit52df2aae8173006fa182bae85890e56afb7d9054 (patch)
tree5a89e7d77e0a8fe25bb4cd110362cd39ff13f85b /colorize.c
parenteace71293190208f443973a9e385ca69da504863 (diff)
downloadcolorize-52df2aae8173006fa182bae85890e56afb7d9054.tar.gz
colorize-52df2aae8173006fa182bae85890e56afb7d9054.tar.bz2
init_conf_vars(): use explicit format string
Diffstat (limited to 'colorize.c')
-rw-r--r--colorize.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/colorize.c b/colorize.c
index 50011e2..622f609 100644
--- a/colorize.c
+++ b/colorize.c
@@ -779,7 +779,7 @@ init_conf_vars (const struct conf *config)
else if (streq (config->omit_color_empty, "no"))
omit_color_empty = false;
else
- vfprintf_fail ("omit-color-empty conf option is not valid");
+ vfprintf_fail (formats[FMT_GENERIC], "omit-color-empty conf option is not valid");
}
}