aboutsummaryrefslogtreecommitdiff
path: root/externals/grill/flext/source/flsupport.cpp
diff options
context:
space:
mode:
authorThomas Grill <xovo@users.sourceforge.net>2004-10-28 04:02:11 +0000
committerThomas Grill <xovo@users.sourceforge.net>2004-10-28 04:02:11 +0000
commitb196f48d32e04274f98baf06fbd981cd9f60d0a0 (patch)
treedd04d1d2e13c2ed562ab8f03036c252383a921bf /externals/grill/flext/source/flsupport.cpp
parentd417beb73087b6b39bc6a8c0321a589ea4bf3cac (diff)
autoconf files by Tim Blechmann
changes for OSX added required autoconf files svn path=/trunk/; revision=2183
Diffstat (limited to 'externals/grill/flext/source/flsupport.cpp')
-rw-r--r--externals/grill/flext/source/flsupport.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/externals/grill/flext/source/flsupport.cpp b/externals/grill/flext/source/flsupport.cpp
index b4c3d09f..9eec7abd 100644
--- a/externals/grill/flext/source/flsupport.cpp
+++ b/externals/grill/flext/source/flsupport.cpp
@@ -239,7 +239,7 @@ void flext_root::FreeAligned(void *blk)
void flext::GetAString(const t_atom &a,char *buf,size_t szbuf)
{
#if FLEXT_SYS == FLEXT_SYS_PD
- atom_string(const_cast<t_atom *>(&a),buf,szbuf);
+ atom_string(const_cast<t_atom *>(&a),buf,(int)szbuf);
#else
if(IsSymbol(a)) STD::strncpy(buf,GetString(a),szbuf);
else if(IsFloat(a)) STD::snprintf(buf,szbuf,"%f",GetFloat(a));