Skip to content

Commit

Permalink
Fix file:line path for $FILEPOS (#1124)
Browse files Browse the repository at this point in the history
  • Loading branch information
WardenGnaw authored Mar 19, 2021
1 parent 1eb5bd3 commit 8456c49
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/OpenDebugAD7/Tracepoint.cs
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ private string InterpolateToken(string token, IDebugThread2 pThread, IDebugStack
hr = pDocumentContext.GetStatementRange(textPosBeg, textPosEnd);
if (hr >= 0)
{
return string.Format(CultureInfo.InvariantCulture, "{0}({1})", fileName, textPosBeg[0].dwLine + 1);
return string.Format(CultureInfo.InvariantCulture, "{0}:{1}", fileName, textPosBeg[0].dwLine + 1);
}
}
}
Expand Down

0 comments on commit 8456c49

Please sign in to comment.