Skip to content

Commit 3c484aa

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

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

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

0 commit comments

Comments
 (0)