summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjsg <jsg@openbsd.org>2009-07-12 21:37:31 +0000
committerjsg <jsg@openbsd.org>2009-07-12 21:37:31 +0000
commit436c63603364d12f9b6b8922d28ce225033b836c (patch)
tree3112f32e0362a11ed95e1c3eddaefb9eac0ea7ea
parentAccept numeric UIDs as well as usernames like pgrep etc. (diff)
downloadwireguard-openbsd-436c63603364d12f9b6b8922d28ce225033b836c.tar.xz
wireguard-openbsd-436c63603364d12f9b6b8922d28ce225033b836c.zip
remove a semicolon at the end of an if statement, already
removed in upstream gdb sources. ok kettenis@
-rw-r--r--gnu/usr.bin/binutils/gdb/i386-tdep.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/usr.bin/binutils/gdb/i386-tdep.c b/gnu/usr.bin/binutils/gdb/i386-tdep.c
index d5cd111c901..72245675789 100644
--- a/gnu/usr.bin/binutils/gdb/i386-tdep.c
+++ b/gnu/usr.bin/binutils/gdb/i386-tdep.c
@@ -829,7 +829,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;
}