From d180de00a9dab2ea2a8dbd9b48ab0e98f5595b33 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Ekl=C3=B6f?= Date: Sun, 26 Jul 2020 09:44:16 +0200 Subject: [PATCH] config: fix error message for 'scrollback-indicator-style' --- config.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.c b/config.c index 18c88228..f87eb67f 100644 --- a/config.c +++ b/config.c @@ -300,7 +300,7 @@ parse_section_main(const char *key, const char *value, struct config *conf, conf->scrollback.indicator.style = SCROLLBACK_INDICATOR_STYLE_RELATIVE; else { LOG_ERR("%s:%d: scrollback-indicator-style must be one of " - "'none', 'static' or 'moving'", + "'none', 'fixed' or 'moving'", path, lineno); return false; }