Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Added printf() format related fix thanks to christophe.foucher.
git-svn-id: http://picoc.googlecode.com/svn/trunk@603 21eae674-98b7-11dd-bd71-f92a316d2d60
  • Loading branch information
zik.saleeba committed Oct 14, 2013
1 parent ed54c51 commit 1493fa1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion platform.c
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 1493fa1

Please sign in to comment.