diff options
Diffstat (limited to 'gdb/mipsv4-nat.c')
-rw-r--r-- | gdb/mipsv4-nat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/mipsv4-nat.c b/gdb/mipsv4-nat.c index 65ffa0d..d29bc99 100644 --- a/gdb/mipsv4-nat.c +++ b/gdb/mipsv4-nat.c @@ -154,7 +154,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; } |