diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/test-i386-code16.S | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test-i386-code16.S b/tests/test-i386-code16.S index 8f51052cec..816c24b96f 100644 --- a/tests/test-i386-code16.S +++ b/tests/test-i386-code16.S @@ -44,9 +44,9 @@ code16_func3 = . - code16_start ljmp $CS_SEG, $(myjmp1 - code16_start) myjmp1_next: - cs lcall myfunc2_addr - code16_start + cs lcall *myfunc2_addr - code16_start - cs ljmp myjmp2_addr - code16_start + cs ljmp *myjmp2_addr - code16_start myjmp2_next: data32 lret |