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_concat.c | |
parent | 205992dca4afb92591c09353373244ce14204b52 (diff) |
pedantic and C99
svn path=/trunk/externals/iem/iemmatrix/; revision=9114
Diffstat (limited to 'src/mtx_concat.c')
-rw-r--r-- | src/mtx_concat.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mtx_concat.c b/src/mtx_concat.c index 8e353e5..872e706 100644 --- a/src/mtx_concat.c +++ b/src/mtx_concat.c @@ -149,7 +149,7 @@ static void mTXConcatMatrix (MTXconcat *mtx_concat_obj, t_symbol *s, t_matrix *mtx_in2 = &mtx_concat_obj->mtx_in2; t_matrix *mtx_out = &mtx_concat_obj->mtx_out; - // size check + /* size check */ if (!size) { post("mtx_concat: invalid dimensions"); return; @@ -161,8 +161,8 @@ static void mTXConcatMatrix (MTXconcat *mtx_concat_obj, t_symbol *s, mtx_in1->row = rows; mtx_in1->col = columns; mtx_in1->atombuffer = argv; -// alternatively to the above: -// matrix_matrix2 (mtx_in1, s, argc, argv); + /* alternatively to the above: */ + /* matrix_matrix2 (mtx_in1, s, argc, argv); */ if (mtx_concat_obj->concat_mode == 0) { mTXConcatDoRowConcatenation(mtx_concat_obj, mtx_in1, mtx_in2, mtx_out); |