Skip to content

Commit

Permalink
remove unnecessary cast in cybuf
Browse files Browse the repository at this point in the history
  • Loading branch information
porres committed Aug 16, 2024
1 parent 8c03b4f commit e82fc1a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion shared/signal/cybuf.c
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ void *cybuf_init(t_class *owner, t_symbol *bufname, int numchans, int singlemode
c->c_single = singlemode;
c->c_owner = owner;
c->c_npts = 0;
c->c_vectors = (t_word**)vectors;
c->c_vectors = vectors;
c->c_channames = channames;
c->c_disabled = 0;
c->c_playable = 0;
Expand Down

0 comments on commit e82fc1a

Please sign in to comment.