diff options
author | Mike Frysinger <vapier@gentoo.org> | 2005-07-08 23:37:31 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2005-07-08 23:37:31 +0000 |
commit | f983b69c2b45b16e20f3133e5e06d041c7774c07 (patch) | |
tree | 2e8400e4900b120e62ce9c390b60528ea7377b8f /libc/sysdeps/linux/i386/syscall.S | |
parent | 63b525301215877c698ae434c67e13a3b99e9b2f (diff) |
oops, we want to jmp to the syscall handler, not call it
Diffstat (limited to 'libc/sysdeps/linux/i386/syscall.S')
-rw-r--r-- | libc/sysdeps/linux/i386/syscall.S | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/sysdeps/linux/i386/syscall.S b/libc/sysdeps/linux/i386/syscall.S index 00e52c300..44eb00f49 100644 --- a/libc/sysdeps/linux/i386/syscall.S +++ b/libc/sysdeps/linux/i386/syscall.S @@ -49,6 +49,6 @@ syscall: ret /* Return to caller. */ __error: - call __syscall_error + jmp __syscall_error .size syscall,.-syscall |