diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/pack.c | 2 | ||||
-rw-r--r-- | src/pdf~.c | 2 | ||||
-rw-r--r-- | src/unpack.c | 2 | ||||
-rw-r--r-- | src/z~.c | 2 |
4 files changed, 3 insertions, 5 deletions
@@ -15,7 +15,7 @@ * * You should have received a copy of the GNU General Public License along * with this program. If not, see <http://www.gnu.org/licenses/>. -/* + */ /* * this version of [pack] does not care about types, so you can send a symbol to a float inlet and vice versa @@ -96,11 +96,9 @@ static void *pdf_new(t_floatarg f) { int i = f; t_pdf *x = (t_pdf *)pd_new(pdf_class); - t_float *buf; x->size = (i)?i:64; x->buf = (t_float *)getbytes(x->size * sizeof(*x->buf)); - buf = x->buf; clear_pdfbuf(x); outlet_new(&x->x_obj, &s_list); diff --git a/src/unpack.c b/src/unpack.c index 33f2414..baf5246 100644 --- a/src/unpack.c +++ b/src/unpack.c @@ -15,7 +15,7 @@ * * You should have received a copy of the GNU General Public License along * with this program. If not, see <http://www.gnu.org/licenses/>. -/* + */ /* * this version of [unpack] does not care about types, so the arguments are merely there for documentation reasons @@ -15,7 +15,7 @@ * * You should have received a copy of the GNU General Public License along * with this program. If not, see <http://www.gnu.org/licenses/>. -/* + */ /* here we do some sample-wise delay, so you can do your own FIR-filter-designs |