aboutsummaryrefslogtreecommitdiff
path: root/src/mtx_resize.c
diff options
context:
space:
mode:
authorIOhannes m zmölnig <zmoelnig@users.sourceforge.net>2008-01-03 12:28:27 +0000
committerIOhannes m zmölnig <zmoelnig@users.sourceforge.net>2008-01-03 12:28:27 +0000
commitc3a067dc355fc57a5759d4e9a97bcbcd878caf13 (patch)
tree2035f23ed32392b7d7b92baf9fac1d4dc23e4cac /src/mtx_resize.c
parent205992dca4afb92591c09353373244ce14204b52 (diff)
pedantic and C99
svn path=/trunk/externals/iem/iemmatrix/; revision=9114
Diffstat (limited to 'src/mtx_resize.c')
-rw-r--r--src/mtx_resize.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mtx_resize.c b/src/mtx_resize.c
index 5c2323c..dfa182c 100644
--- a/src/mtx_resize.c
+++ b/src/mtx_resize.c
@@ -48,7 +48,7 @@ static void mtx_resize_matrix(t_matrix *x, t_symbol *s, int argc, t_atom *argv)
if (!r)r=row;
if (!c)c=col;
- if (r==row && c==col) { // no need to change
+ if (r==row && c==col) { /* no need to change */
outlet_anything(x->x_obj.ob_outlet, gensym("matrix"), argc, argv);
return;
}