Skip to content

Commit

Permalink
fix compiler warning
Browse files Browse the repository at this point in the history
  • Loading branch information
dktapps committed Nov 21, 2024
1 parent 71cae13 commit 39ca606
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/routine.c
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ static inline zend_result pmmpthread_routine_run_function(pmmpthread_zend_object
//fake stack frame to make sure zend_call_function() doesn't swallow exceptions
//we need to be able to pass them to the user exception handler if there is one
memset(&execute_data, 0, sizeof(execute_data));
execute_data.func = &zend_pass_function;
execute_data.func = (zend_function*) & zend_pass_function;

if (pmmpthread_monitor_check(&connection->ts_obj->monitor, PMMPTHREAD_MONITOR_ERROR)) {
return result;
Expand Down

0 comments on commit 39ca606

Please sign in to comment.