Skip to content

Commit

Permalink
fix compilation error with sfload
Browse files Browse the repository at this point in the history
  • Loading branch information
porres committed Jan 29, 2025
1 parent db75f4b commit b154f57
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/Control/sfload.c
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ static void *sfload_new(t_symbol *s, int ac, t_atom *av){
x->x_result_ready = 0;
x->x_thread_created = 0;
x->x_result_clock = clock_new(x, (t_method)sfload_check_done);
x->x_info_outlet = outlet_new(x, &s_list);
x->x_info_outlet = outlet_new(&x->x_obj, &s_list);
return(x);
}

Expand Down

0 comments on commit b154f57

Please sign in to comment.