aboutsummaryrefslogtreecommitdiff
path: root/src/mtx_index.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_index.c
parent205992dca4afb92591c09353373244ce14204b52 (diff)
pedantic and C99
svn path=/trunk/externals/iem/iemmatrix/; revision=9114
Diffstat (limited to 'src/mtx_index.c')
-rw-r--r--src/mtx_index.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mtx_index.c b/src/mtx_index.c
index a4ca156..cd993b0 100644
--- a/src/mtx_index.c
+++ b/src/mtx_index.c
@@ -118,7 +118,7 @@ static void mTXIndexRightMatrix (MTXindex *mtx_index_obj, t_symbol *s,
int *index_in = mtx_index_obj->index_in;
int max;
- // size check
+ /* size check */
if (!size) {
post("mtx_index: invalid dimensions");
return;
@@ -167,7 +167,7 @@ static void mTXIndexMatrix (MTXindex *mtx_index_obj, t_symbol *s,
int index_columns = mtx_index_obj->index_columns;
int *indx = mtx_index_obj->index_in;
- // size check
+ /* size check */
if (!size) {
post("mtx_index: invalid dimensions");
return;
@@ -185,7 +185,7 @@ static void mTXIndexMatrix (MTXindex *mtx_index_obj, t_symbol *s,
post("mtx_index: index with what? no right matrix defined");
return;
}
- // main part
+ /* main part */
list_out += 2;
setAtomListConstFloat (mtx_index_obj->index_size, list_out, mtx_index_obj->fill_value);
writeIndexedValuesIntoList (mtx_index_obj->index_size, indx,list_in,list_out);