diff options
Diffstat (limited to 'gdb/amd64-obsd-tdep.c')
-rw-r--r-- | gdb/amd64-obsd-tdep.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/amd64-obsd-tdep.c b/gdb/amd64-obsd-tdep.c index 5a7e6ae..cdb09d0 100644 --- a/gdb/amd64-obsd-tdep.c +++ b/gdb/amd64-obsd-tdep.c @@ -78,7 +78,7 @@ amd64obsd_sigtramp_p (struct frame_info *this_frame) /* If we can't read the instructions at START_PC, return zero. */ buf = (gdb_byte *) alloca ((sizeof sigreturn) + 1); - if (!safe_frame_unwind_memory (this_frame, start_pc + 6, buf, buflen)) + if (!safe_frame_unwind_memory (this_frame, start_pc + 6, {buf, buflen})) return 0; /* Check for sigreturn(2). Depending on how the assembler encoded |