aboutsummaryrefslogtreecommitdiff
path: root/externals/grill/flext/source/flmsg.cpp
diff options
context:
space:
mode:
authorThomas Grill <xovo@users.sourceforge.net>2006-10-31 00:30:57 +0000
committerThomas Grill <xovo@users.sourceforge.net>2006-10-31 00:30:57 +0000
commitc9f63273e395c7c8f5a2c112bddea09735b6518e (patch)
tree0bee4fe4ea3509fb834f61981afb37edbec20ed2 /externals/grill/flext/source/flmsg.cpp
parenta0dd272b71c0212515cb4a834a109264448c02ae (diff)
PD: possibility to create DSP objects without main DSP inlet (use FLEXT_DSP0_NEW or similar)
fixed buggy memory deallocation for AtomListStatic svn path=/trunk/; revision=6196
Diffstat (limited to 'externals/grill/flext/source/flmsg.cpp')
-rwxr-xr-xexternals/grill/flext/source/flmsg.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/externals/grill/flext/source/flmsg.cpp b/externals/grill/flext/source/flmsg.cpp
index 9d8d8250..2fd06652 100755
--- a/externals/grill/flext/source/flmsg.cpp
+++ b/externals/grill/flext/source/flmsg.cpp
@@ -256,15 +256,15 @@ bool flext_base::CbMethodHandler(int inlet,const t_symbol *s,int argc,const t_at
if(!ret) ret = CbMethodResort(inlet,s,argc,argv);
}
catch(std::exception &x) {
- error("%s - Exception while processing method: %s",thisName(),x.what());
+ error("%s - %s: %s",thisName(),GetString(s),x.what());
ret = false;
}
catch(const char *txt) {
- error("%s - Exception while processing method: %s",thisName(),txt);
+ error("%s - %s: %s",thisName(),GetString(s),txt);
ret = false;
}
catch(...) {
- error("%s - Unknown exception while processing method",thisName());
+ error("%s - %s : Unknown exception while processing method",thisName(),GetString(s));
ret = false;
}