aboutsummaryrefslogtreecommitdiff
path: root/pd/src/d_dac.c
diff options
context:
space:
mode:
authorThomas Grill <xovo@users.sourceforge.net>2003-09-23 00:21:28 +0000
committerThomas Grill <xovo@users.sourceforge.net>2003-09-23 00:21:28 +0000
commit64fdb009695828b788fce074135b20a5e52c5fc4 (patch)
treea05144197dd339721b6d4a3a0927f7596e8872b6 /pd/src/d_dac.c
parenta30193fcd726552364de74984b200be2c30723e7 (diff)
imported version 0.37-0
svn path=/trunk/; revision=1016
Diffstat (limited to 'pd/src/d_dac.c')
-rw-r--r--pd/src/d_dac.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pd/src/d_dac.c b/pd/src/d_dac.c
index c090a214..1606b3a1 100644
--- a/pd/src/d_dac.c
+++ b/pd/src/d_dac.c
@@ -171,7 +171,7 @@ static void adc_free(t_adc *x)
static void adc_setup(void)
{
adc_class = class_new(gensym("adc~"), (t_newmethod)adc_new,
- (t_method)adc_free, sizeof(t_adc), CLASS_NOINLET, A_GIMME, 0);
+ (t_method)adc_free, sizeof(t_adc), 0, A_GIMME, 0);
class_addmethod(adc_class, (t_method)adc_dsp, gensym("dsp"), A_CANT, 0);
class_sethelpsymbol(adc_class, gensym("adc~_dac~"));
}