diff options
Diffstat (limited to 'sysdeps/unix/sysv/linux/i386/syscall.S')
-rw-r--r-- | sysdeps/unix/sysv/linux/i386/syscall.S | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdeps/unix/sysv/linux/i386/syscall.S b/sysdeps/unix/sysv/linux/i386/syscall.S index 52eb48a9ae..b7b44e76da 100644 --- a/sysdeps/unix/sysv/linux/i386/syscall.S +++ b/sysdeps/unix/sysv/linux/i386/syscall.S @@ -27,5 +27,5 @@ ENTRY (syscall) int $0x80 /* Do the system call. */ POPARGS_5 /* Restore register contents. */ testl %eax, %eax /* Check %eax for error. */ - jl JUMPTARGET(syscall_error) /* Jump to error handler if negative. */ + jl syscall_error /* Jump to error handler if negative. */ ret /* Return to caller. */ |