From 73bbfeee351ab85e3ce37d785c05b9e62e0b7b53 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 86afc2439..799919d6a 100644 --- a/src/common/config/session-config.c +++ b/src/common/config/session-config.c @@ -815,7 +815,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