Update of /cvsroot/pure-data/pd/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26713
Modified Files: Tag: desiredata s_audio_pa.c Log Message: 0.40
Index: s_audio_pa.c =================================================================== RCS file: /cvsroot/pure-data/pd/src/s_audio_pa.c,v retrieving revision 1.4.4.7.2.5 retrieving revision 1.4.4.7.2.5.2.1 diff -C2 -d -r1.4.4.7.2.5 -r1.4.4.7.2.5.2.1 *** s_audio_pa.c 24 Jan 2006 01:29:53 -0000 1.4.4.7.2.5 --- s_audio_pa.c 8 Dec 2006 08:29:42 -0000 1.4.4.7.2.5.2.1 *************** *** 466,475 **** if (pdi->maxInputChannels > 0 && nin < maxndev) { ! strcpy(indevlist + nin * devdescsize, pdi->name); nin++; } if (pdi->maxOutputChannels > 0 && nout < maxndev) { ! strcpy(outdevlist + nout * devdescsize, pdi->name); nout++; } --- 466,479 ---- if (pdi->maxInputChannels > 0 && nin < maxndev) { ! sprintf(indevlist + nin * devdescsize, "(%d)%s", ! pdi->hostApi,pdi->name); ! /* strcpy(indevlist + nin * devdescsize, pdi->name); */ nin++; } if (pdi->maxOutputChannels > 0 && nout < maxndev) { ! sprintf(outdevlist + nout * devdescsize, "(%d)%s", ! pdi->hostApi,pdi->name); ! /* strcpy(outdevlist + nout * devdescsize, pdi->name); */ nout++; }