From 3de79a9597bae70370c449933fd762c89158901d 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 Signed-off-by: Simon Marchi Signed-off-by: Jérémie Galarneau Change-Id: Iba45933cf70452a8c4e89cb471a11cd42bcd08b8 --- 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 e893c1298..5b65a9e0a 100644 --- a/src/common/config/session-config.c +++ b/src/common/config/session-config.c @@ -847,7 +847,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