aboutsummaryrefslogtreecommitdiff
path: root/src/mtx_slice.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mtx_slice.c')
-rw-r--r--src/mtx_slice.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mtx_slice.c b/src/mtx_slice.c
index 3adfe5c..8f88404 100644
--- a/src/mtx_slice.c
+++ b/src/mtx_slice.c
@@ -142,7 +142,7 @@ static void mTXSliceMatrix (MTXslice *mtx_slice_obj, t_symbol *s,
int startcol = mtx_slice_obj->slice_startcol;
int slicecols, slicerows, slicesize;
- // size check
+ /* size check */
if (!size) {
post("mtx_slice: invalid dimensions");
return;
@@ -172,7 +172,7 @@ static void mTXSliceMatrix (MTXslice *mtx_slice_obj, t_symbol *s,
slicecols = stopcol-startcol+1;
slicesize = slicerows*slicecols;
- // main part
+ /* main part */
if (slicesize != mtx_slice_obj->slice_size) {
if (!list_out)
list_out = (t_atom *) getbytes (sizeof (t_atom) * (slicesize + 2));