From 2390a22504fdca725136332f9122b69b4ed3a499 Mon Sep 17 00:00:00 2001 From: jmasterfunk84 <48972964+jmasterfunk84@users.noreply.github.com> Date: Wed, 20 Dec 2023 16:09:45 -0600 Subject: [PATCH] Add space to inprove readbility of error --- lib/app/ogs-init.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/app/ogs-init.c b/lib/app/ogs-init.c index 77597b631..2c117a4ff 100644 --- a/lib/app/ogs-init.c +++ b/lib/app/ogs-init.c @@ -197,7 +197,7 @@ static int read_config(void) break; case YAML_SCANNER_ERROR: if (parser.context) - ogs_error("Scanner error - %s at line %zu, column %zu" + ogs_error("Scanner error - %s at line %zu, column %zu " "%s at line %zu, column %zu", parser.context, parser.context_mark.line+1, parser.context_mark.column+1, @@ -210,7 +210,7 @@ static int read_config(void) break; case YAML_PARSER_ERROR: if (parser.context) - ogs_error("Parser error - %s at line %zu, column %zu" + ogs_error("Parser error - %s at line %zu, column %zu " "%s at line %zu, column %zu", parser.context, parser.context_mark.line+1, parser.context_mark.column+1,