diff options
author | IOhannes m zmölnig <zmoelnig@users.sourceforge.net> | 2011-11-17 15:58:09 +0000 |
---|---|---|
committer | IOhannes m zmölnig <zmoelnig@users.sourceforge.net> | 2011-11-17 15:58:09 +0000 |
commit | c71d145c01d5d988d4da2c86c315660ce371f5ca (patch) | |
tree | 75b9a83ae5bc4dd6ab026484e97a52329fdba1cf /src/mtx_max2.c | |
parent | 11f0ceb4a45c4cb299acd499603cf477f279da24 (diff) |
more liberal use of 'error'
svn path=/trunk/externals/iem/iemmatrix/; revision=15786
Diffstat (limited to 'src/mtx_max2.c')
-rw-r--r-- | src/mtx_max2.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mtx_max2.c b/src/mtx_max2.c index 60b87b5..27da1f3 100644 --- a/src/mtx_max2.c +++ b/src/mtx_max2.c @@ -99,7 +99,7 @@ static void mtx_max2_float(t_mtx_binmtx *x, t_float f) t_atom *ap, *ap2=m2->atombuffer+2; int row2, col2, n; - if (!m2->atombuffer){ post("mulitply with what ?"); return; } + if (!m2->atombuffer){ pd_error(x, "right-hand matrix is missing"); return; } row2=atom_getfloat(m2->atombuffer); col2=atom_getfloat(m2->atombuffer+1); |