Skip to content

Commit d983372

Browse files
Trass3rWardenGnaw
andauthored
fix
Co-authored-by: Andrew Wang <[email protected]>
1 parent fd57886 commit d983372

File tree

1 file changed

+1
-1
lines changed
  • src/MICore/CommandFactories

1 file changed

+1
-1
lines changed

src/MICore/CommandFactories/gdb.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ private async Task JumpInternal(string target)
192192

193193
public override Task ExecJump(string filename, int line)
194194
{
195-
string target = "--source " + filename + " --line " + line;
195+
string target = "--source " + filename + " --line " + line.ToString(CultureInfo.InvariantCulture);
196196
return JumpInternal(target);
197197
}
198198

0 commit comments

Comments
 (0)