Skip to content

Commit 3e36359

Browse files
committed
Remove void pointer cast
1 parent bdea171 commit 3e36359

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sco.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -940,7 +940,7 @@ static void llco_stackjmp(void *stack, size_t stack_size,
940940
stackjmp_ucallee.uc_stack.ss_sp = stack;
941941
stackjmp_ucallee.uc_stack.ss_size = stack_size;
942942
llco_adjust_ucontext_stack(&stackjmp_ucallee);
943-
makecontext(&stackjmp_ucallee, (void*)entry, 0);
943+
makecontext(&stackjmp_ucallee, entry, 0);
944944
setcontext(&stackjmp_ucallee);
945945
llco_exit();
946946
}

0 commit comments

Comments
 (0)