config: fix error message for 'scrollback-indicator-style'

This commit is contained in:
Daniel Eklöf 2020-07-26 09:44:16 +02:00
parent be7d0a5615
commit d180de00a9
No known key found for this signature in database
GPG key ID: 5BBD4992C116573F

View file

@ -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;
}