Add space to inprove readbility of error

This commit is contained in:
jmasterfunk84 2023-12-20 16:09:45 -06:00 committed by Sukchan Lee
parent 75f32e07de
commit 2390a22504
1 changed files with 2 additions and 2 deletions

View File

@ -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,