Skip to content

Commit

Permalink
Add space to inprove readbility of error
Browse files Browse the repository at this point in the history
  • Loading branch information
jmasterfunk84 authored and acetcom committed Dec 21, 2023
1 parent 75f32e0 commit 2390a22
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/app/ogs-init.c
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand All @@ -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,
Expand Down

0 comments on commit 2390a22

Please sign in to comment.