diff options
author | Alexandre Oliva <aoliva@redhat.com> | 2002-12-13 20:21:32 +0000 |
---|---|---|
committer | Alexandre Oliva <aoliva@redhat.com> | 2002-12-13 20:21:32 +0000 |
commit | 3de2dc4ff6e4c9232f3f231adc8a2dd5609c5db5 (patch) | |
tree | fc7deff31f00c483e7aab93bd1ebd7d54dfaacd2 /gdb/frame.h | |
parent | fe29b929e291714007911e2bf0b57b433aecf0db (diff) | |
download | gdb-3de2dc4ff6e4c9232f3f231adc8a2dd5609c5db5.zip gdb-3de2dc4ff6e4c9232f3f231adc8a2dd5609c5db5.tar.gz gdb-3de2dc4ff6e4c9232f3f231adc8a2dd5609c5db5.tar.bz2 |
* frame.h (frame_id_unwind_ftype): Fix typo in return type.
Diffstat (limited to 'gdb/frame.h')
-rw-r--r-- | gdb/frame.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/frame.h b/gdb/frame.h index 0fd305e..3953949 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. */ |