From a22a57cb77d3b862b7080f21c4e507821c24c5fb Mon Sep 17 00:00:00 2001 From: Simon Marchi Date: Fri, 2 Apr 2021 15:52:27 -0400 Subject: [PATCH] config: fix typo in error message MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Change-Id: Ie02ccd1e79aecb87fbb9c308ffba09353d50b8f3 Signed-off-by: Simon Marchi Signed-off-by: Jérémie Galarneau --- src/common/config/session-config.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/config/session-config.c b/src/common/config/session-config.c index c5432c392..1b7d965fa 100644 --- a/src/common/config/session-config.c +++ b/src/common/config/session-config.c @@ -848,7 +848,7 @@ int parse_bool(xmlChar *str, int *val) } else if (!strcmp((const char *) str, config_xml_false)) { *val = 0; } else { - WARN("Invalid boolean value encoutered (%s).", + WARN("Invalid boolean value encountered (%s).", (const char *) str); ret = -1; } -- 2.34.1