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 d983372 commit 3c484aa
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 @@ -198,7 +198,7 @@ public override Task ExecJump(string filename, int line)

public override Task ExecJump(ulong address)
{
string target = "*" + string.Format("0x{0:X}", address);
string target = "*" + string.Format(CultureInfo.InvariantCulture, "0x{0:X}", address);
return JumpInternal(target);
}

Expand Down

0 comments on commit 3c484aa

Please sign in to comment.