Skip to content

Commit

Permalink
Fix missing spaces in tools/compile
Browse files Browse the repository at this point in the history
  • Loading branch information
klange committed Feb 12, 2024
1 parent 22e550e commit fbf1b09
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tools/compile.c
Original file line number Diff line number Diff line change
Expand Up @@ -323,7 +323,7 @@ static int doSecondPass(FILE * out) {
break;
}
fprintf(stderr,
"Invalid object found in constants table,"
"Invalid object found in constants table, "
"this marashal format can not store '%s'\n",
krk_typeName(*val));
return 1;
Expand All @@ -341,7 +341,7 @@ static int doSecondPass(FILE * out) {
break;
}
fprintf(stderr,
"Invalid value found in constants table,"
"Invalid value found in constants table, "
"this marashal format can not store '%s'\n",
krk_typeName(*val));
return 1;
Expand Down

0 comments on commit fbf1b09

Please sign in to comment.