Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
Co-authored-by: Andrew Wang <waan@microsoft.com>
  • Loading branch information
Trass3r and WardenGnaw authored Sep 6, 2020
1 parent fd57886 commit d983372
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/MICore/CommandFactories/gdb.cs
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ private async Task JumpInternal(string target)

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

Expand Down

0 comments on commit d983372

Please sign in to comment.