diff options
Diffstat (limited to 'gdb/i386obsd-tdep.c')
-rw-r--r-- | gdb/i386obsd-tdep.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/i386obsd-tdep.c b/gdb/i386obsd-tdep.c index eae445c..f344a97 100644 --- a/gdb/i386obsd-tdep.c +++ b/gdb/i386obsd-tdep.c @@ -92,7 +92,7 @@ i386obsd_sigtramp_p (struct frame_info *this_frame) return 0; /* Allocate buffer. */ - buf = alloca (buflen); + buf = (gdb_byte *) alloca (buflen); /* Loop over all offsets. */ for (offset = i386obsd_sigreturn_offset; *offset != -1; offset++) |