diff options
author | IOhannes m zmölnig <zmoelnig@users.sourceforge.net> | 2008-01-03 12:28:27 +0000 |
---|---|---|
committer | IOhannes m zmölnig <zmoelnig@users.sourceforge.net> | 2008-01-03 12:28:27 +0000 |
commit | c3a067dc355fc57a5759d4e9a97bcbcd878caf13 (patch) | |
tree | 2035f23ed32392b7d7b92baf9fac1d4dc23e4cac /src/mtx_minmax.c | |
parent | 205992dca4afb92591c09353373244ce14204b52 (diff) |
pedantic and C99
svn path=/trunk/externals/iem/iemmatrix/; revision=9114
Diffstat (limited to 'src/mtx_minmax.c')
-rw-r--r-- | src/mtx_minmax.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mtx_minmax.c b/src/mtx_minmax.c index f4345b9..c2d128e 100644 --- a/src/mtx_minmax.c +++ b/src/mtx_minmax.c @@ -27,7 +27,7 @@ struct _MTXminmax_ int size; int outsize; int mode; - int operator_minimum; // 1 if we are [mtx_min], 0 if we are [mtx_max] + int operator_minimum; /* 1 if we are [mtx_min], 0 if we are [mtx_max] */ t_outlet *min_outlet; t_outlet *max_outlet; @@ -142,7 +142,7 @@ static void mTXMinMaxMatrix (MTXminmax *mtx_minmax_obj, t_symbol *s, t_atom *minlist_out = mtx_minmax_obj->minlist_out; int elements_out; - // size check + /* size check */ if (!size) { post("mtx_minmax: invalid dimensions"); return; @@ -171,7 +171,7 @@ static void mTXMinMaxMatrix (MTXminmax *mtx_minmax_obj, t_symbol *s, mtx_minmax_obj->minlist_out = minlist_out; mtx_minmax_obj->maxlist_out = maxlist_out; - // main part + /* main part */ switch(mtx_minmax_obj->mode){ case 1: |