diff options
Diffstat (limited to 'gdb/arm-linux-tdep.c')
-rw-r--r-- | gdb/arm-linux-tdep.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/arm-linux-tdep.c b/gdb/arm-linux-tdep.c index 6273027..4772d82 100644 --- a/gdb/arm-linux-tdep.c +++ b/gdb/arm-linux-tdep.c @@ -1267,7 +1267,7 @@ arm_canonicalize_syscall (int syscall) else if (syscall >= 248 && syscall <= 253) return syscall + 4; - return -1; + return gdb_sys_no_syscall; } /* Record all registers but PC register for process-record. */ @@ -1299,7 +1299,7 @@ arm_linux_syscall_record (struct regcache *regcache, unsigned long svc_number) syscall_gdb = arm_canonicalize_syscall (svc_number); - if (syscall_gdb < 0) + if (syscall_gdb == gdb_sys_no_syscall) { printf_unfiltered (_("Process record and replay target doesn't " "support syscall number %s\n"), |