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:
parent
d7c8e7a187
commit
f9955fec12
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue