Remove incorrect semicolon at the end of an if-statement.
From OpenBSD via Henning Petersen in PR 41708.
This commit is contained in:
parent
94cea1184f
commit
f3f83d5a32
|
@ -874,7 +874,7 @@ i386_skip_prologue (CORE_ADDR start_pc)
|
|||
|
||||
/* addl y,%ebx */
|
||||
if (delta > 0 && op == 0x81
|
||||
&& read_memory_unsigned_integer (pc + delta + 1, 1) == 0xc3);
|
||||
&& read_memory_unsigned_integer (pc + delta + 1, 1) == 0xc3)
|
||||
{
|
||||
pc += delta + 6;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue