diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 18e69721bb..b19b238ae5 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,7 @@ +2002-12-13 Alexandre Oliva + + * frame.h (frame_id_unwind_ftype): Fix typo in return type. + 2002-12-13 Kevin Buettner * config/mips/tm-mips.h, config/mips/tm-irix3.h, diff --git a/gdb/frame.h b/gdb/frame.h index 0fd305e235..39539492c2 100644 --- a/gdb/frame.h +++ b/gdb/frame.h @@ -335,8 +335,8 @@ typedef CORE_ADDR (frame_pc_unwind_ftype) (struct frame_info *frame, /* Same as for registers above, but return the ID of the frame that called this one. */ -typedef struct frame_info (frame_id_unwind_ftype) (struct frame_info *frame, - void **unwind_cache); +typedef struct frame_id (frame_id_unwind_ftype) (struct frame_info *frame, + void **unwind_cache); /* Describe the saved registers of a frame. */