Remove incorrect semicolon at the end of an if-statement.

From OpenBSD via Henning Petersen in PR 41708.
This commit is contained in:
wiz 2009-07-13 08:35:24 +00:00
parent 94cea1184f
commit f3f83d5a32
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}