We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fd57886 commit d983372Copy full SHA for d983372
src/MICore/CommandFactories/gdb.cs
@@ -192,7 +192,7 @@ private async Task JumpInternal(string target)
192
193
public override Task ExecJump(string filename, int line)
194
{
195
- string target = "--source " + filename + " --line " + line;
+ string target = "--source " + filename + " --line " + line.ToString(CultureInfo.InvariantCulture);
196
return JumpInternal(target);
197
}
198
0 commit comments