Update of /cvsroot/pure-data/pd/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30466/src
Modified Files: Tag: devel_0_38 s_audio_asio.cpp Log Message: fixed deadly typo
Index: s_audio_asio.cpp =================================================================== RCS file: /cvsroot/pure-data/pd/src/Attic/s_audio_asio.cpp,v retrieving revision 1.1.4.18 retrieving revision 1.1.4.19 diff -C2 -d -r1.1.4.18 -r1.1.4.19 *** s_audio_asio.cpp 30 Nov 2004 09:58:56 -0000 1.1.4.18 --- s_audio_asio.cpp 11 Dec 2004 10:42:40 -0000 1.1.4.19 *************** *** 395,400 ****
asio_converter = (converter_t **)getbytes(channels * sizeof (converter_t *)); ! asio_samplewidth = (int *)getbytes(sys_outchannels + ! sys_inchannels * sizeof (int)); for (i = 0; i != sys_outchannels + sys_inchannels; ++i) --- 395,399 ----
asio_converter = (converter_t **)getbytes(channels * sizeof (converter_t *)); ! asio_samplewidth = (int *)getbytes((sys_outchannels + sys_inchannels) * sizeof (int)); for (i = 0; i != sys_outchannels + sys_inchannels; ++i)