libroot/x86: Fix indirect jump

This commit is contained in:
Pawel Dziepak 2014-01-16 18:54:17 +01:00
parent 79c9b824e4
commit dd8a866adc
1 changed files with 1 additions and 1 deletions

View File

@ -23,7 +23,7 @@
movl $n, %eax; \
movl __gCommPageAddress, %edx; \
addl 4 * COMMPAGE_ENTRY_X86_SYSCALL(%edx), %edx; \
jmp %edx; \
jmp *%edx; \
FUNCTION_END(name)
#define SYSCALL0(name, n) _SYSCALL(name, n)