From 35a880b2b34e2c9f92f726745a4e788753b3fada Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?IOhannes=20m=20zm=C3=B6lnig?= Date: Fri, 25 Feb 2011 11:27:21 +0000 Subject: in order to print a t_symbol, you have to use ->s_name svn path=/trunk/externals/pmpd/; revision=14964 --- pmpd3d.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'pmpd3d.c') diff --git a/pmpd3d.c b/pmpd3d.c index 644eafa..7137623 100644 --- a/pmpd3d.c +++ b/pmpd3d.c @@ -113,9 +113,9 @@ t_float tabread2(t_pmpd3d *x, t_float pos, t_symbol *array) t_float posx; if (!(a = (t_garray *)pd_findbyclass(array, garray_class))) - pd_error(x, "%s: no such array", array); + pd_error(x, "%s: no such array", array->s_name); else if (!garray_getfloatwords(a, &npoints, &vec)) - pd_error(x, "%s: bad template for tabLink", array); + pd_error(x, "%s: bad template for tabLink", array->s_name); else { posx = fabs(pos)*npoints; -- cgit v1.2.1