summaryrefslogtreecommitdiff
path: root/gdb/linux-record.c
diff options
context:
space:
mode:
Diffstat (limited to 'gdb/linux-record.c')
-rw-r--r--gdb/linux-record.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/gdb/linux-record.c b/gdb/linux-record.c
index 5a9ec99a87c..c7697000b83 100644
--- a/gdb/linux-record.c
+++ b/gdb/linux-record.c
@@ -1148,10 +1148,11 @@ Do you want to stop the program?"),
case gdb_sys_msgrcv:
{
ULONGEST msgp;
+ LONGEST l;
- regcache_raw_read_signed (regcache, tdep->arg3, &tmpulongest);
+ regcache_raw_read_signed (regcache, tdep->arg3, &l);
regcache_raw_read_unsigned (regcache, tdep->arg2, &msgp);
- tmpint = (int) tmpulongest + tdep->size_long;
+ tmpint = l + tdep->size_long;
if (record_arch_list_add_mem ((CORE_ADDR) msgp, tmpint))
return -1;
}
@@ -1180,7 +1181,7 @@ Do you want to stop the program?"),
break;
case RECORD_MSGRCV:
{
- ULONGEST second;
+ LONGEST second;
ULONGEST ptr;
regcache_raw_read_signed (regcache, tdep->arg3, &second);