Skip to content

Commit

Permalink
changes to o.var to reflect changes in the libo api
Browse files Browse the repository at this point in the history
  • Loading branch information
maccallum committed Apr 1, 2015
1 parent 254068d commit 08baee7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/o.var/o.var.c
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ void ovar_doFullPacket(t_ovar *x, long len, char *ptr, long inlet)
t_osc_bndl_s *lhs = osc_bundle_s_alloc(len, ptr);
t_osc_bndl_s *rhs = osc_bundle_s_alloc(copylen, copy);
t_osc_bndl_s *res = osc_bundle_s_union(lhs, rhs);
omax_util_outletOSC(x->outlet, osc_bundle_s_getLen(res), osc_bundle_s_getPtr(bndl));
omax_util_outletOSC(x->outlet, osc_bundle_s_getLen(res), osc_bundle_s_getPtr(res));
osc_bundle_s_free(rhs);
osc_bundle_s_free(res);
//osc_bundle_s_union(len, ptr, copylen, copy, &bndllen, &bndl);
Expand Down

0 comments on commit 08baee7

Please sign in to comment.