Update of /cvsroot/q-lang/faust2pd/faust
In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv22528
Modified Files:
puredata.cpp
Log Message:
Fix gcc4 compiler warning.
Index: puredata.cpp
===================================================================
RCS file: /cvsroot/q-lang/faust2pd/faust/puredata.cpp,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** puredata.cpp 3 Dec 2008 20:19:49 -0000 1.5
--- puredata.cpp 3 Dec 2008 20:21:37 -0000 1.6
***************
*** 696,700 ****
extern "C" void faust_setup(mydsp)
{
! t_symbol *s = gensym(sym(mydsp) "~");
faust_class =
class_new(s, (t_newmethod)faust_new, (t_method)faust_free,
--- 696,700 ----
extern "C" void faust_setup(mydsp)
{
! t_symbol *s = gensym((char*)sym(mydsp) "~");
faust_class =
class_new(s, (t_newmethod)faust_new, (t_method)faust_free,
|