Skip to content

Commit

Permalink
Added printf() format related fix thanks to christophe.foucher.
Browse files Browse the repository at this point in the history
  • Loading branch information
zik.saleeba committed Oct 14, 2013
1 parent 65dc87a commit ebedf3e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion platform.c
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ void PrintSourceTextErrorLine(IOFILE *Stream, const char *FileName, const char *
for (CCount = 0; CCount < CharacterPos + (int)strlen(INTERACTIVE_PROMPT_STATEMENT); CCount++)
PrintCh(' ', Stream);
}
PlatformPrintf(Stream, "^\n%s:%d: ", FileName, Line, CharacterPos);
PlatformPrintf(Stream, "^\n%s:%d:%d ", FileName, Line, CharacterPos);

}

Expand Down

0 comments on commit ebedf3e

Please sign in to comment.