Skip to content

Commit bfcb014

Browse files
committed
Fix lint
1 parent d9af389 commit bfcb014

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

OpcodeExtractorVTable.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,8 @@ internal unsafe static Dictionary<int, string> Extract(JsonNode opcodeMapData, b
6565
var switchTableOffset = *(sbyte*)(funcPtr + switchTableOffset_offset);
6666
var switchTableCount = *(int*)(funcPtr + switchTableCount_offset);
6767
Console.WriteLine($"Expected {expectedSwitchTableCount} entries, found {switchTableCount}");
68-
if (expectedSwitchTableCount != switchTableCount) {
68+
if (expectedSwitchTableCount != switchTableCount)
69+
{
6970
Console.WriteLine("Switch table count mismatch, press any key to continue anyways");
7071
Console.ReadKey(true);
7172
}

0 commit comments

Comments
 (0)