We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d983372 commit 3c484aaCopy full SHA for 3c484aa
src/MICore/CommandFactories/gdb.cs
@@ -198,7 +198,7 @@ public override Task ExecJump(string filename, int line)
198
199
public override Task ExecJump(ulong address)
200
{
201
- string target = "*" + string.Format("0x{0:X}", address);
+ string target = "*" + string.Format(CultureInfo.InvariantCulture, "0x{0:X}", address);
202
return JumpInternal(target);
203
}
204
0 commit comments