1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

Fixes message in problem tracing.

This commit is contained in:
Markus Schorn 2008-02-22 16:49:01 +00:00
parent d7c8e7a187
commit f9955fec12

View file

@ -66,7 +66,7 @@ public class ASTProblem extends ASTNode implements IASTProblem {
char[] file= getOriginatingFileName();
int line= getSourceLineNumber();
Object[] args = new Object[] { msg, file, new Integer(line) };
Object[] args = new Object[] { msg, new String(file), new Integer(line) };
return ParserMessages.getFormattedString(PROBLEM_PATTERN, args);
}