diff options
Diffstat (limited to 'gdb/irix4-nat.c')
-rw-r--r-- | gdb/irix4-nat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/irix4-nat.c b/gdb/irix4-nat.c index 7635495..90229bb 100644 --- a/gdb/irix4-nat.c +++ b/gdb/irix4-nat.c @@ -156,7 +156,7 @@ get_longjmp_target (CORE_ADDR *pc) TARGET_PTR_BIT / TARGET_CHAR_BIT)) return 0; - *pc = extract_address (buf, TARGET_PTR_BIT / TARGET_CHAR_BIT); + *pc = extract_unsigned_integer (buf, TARGET_PTR_BIT / TARGET_CHAR_BIT); return 1; } |