aboutsummaryrefslogtreecommitdiff
path: root/src/mtx_min2.c
diff options
context:
space:
mode:
authorIOhannes m zmölnig <zmoelnig@users.sourceforge.net>2011-11-17 15:58:09 +0000
committerIOhannes m zmölnig <zmoelnig@users.sourceforge.net>2011-11-17 15:58:09 +0000
commitc71d145c01d5d988d4da2c86c315660ce371f5ca (patch)
tree75b9a83ae5bc4dd6ab026484e97a52329fdba1cf /src/mtx_min2.c
parent11f0ceb4a45c4cb299acd499603cf477f279da24 (diff)
more liberal use of 'error'
svn path=/trunk/externals/iem/iemmatrix/; revision=15786
Diffstat (limited to 'src/mtx_min2.c')
-rw-r--r--src/mtx_min2.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mtx_min2.c b/src/mtx_min2.c
index 5bf0db3..846cd31 100644
--- a/src/mtx_min2.c
+++ b/src/mtx_min2.c
@@ -99,7 +99,7 @@ static void mtx_min2_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);