diff options
author | N.N. <matju@users.sourceforge.net> | 2009-06-03 02:29:02 +0000 |
---|---|---|
committer | N.N. <matju@users.sourceforge.net> | 2009-06-03 02:29:02 +0000 |
commit | e3d6e1148ca458cc20cb635bf0d43d71f2552302 (patch) | |
tree | 4fdf10dd8551bb74cdb12b6d84da7829863e5382 /desiredata/src | |
parent | 667ae1230b6ed2cf0eb72a28e5d4411dc212df2d (diff) |
use "desire.h"; fix printf-warnings
svn path=/trunk/; revision=11647
Diffstat (limited to 'desiredata/src')
-rwxr-xr-x | desiredata/src/s_audio_portaudio.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/desiredata/src/s_audio_portaudio.c b/desiredata/src/s_audio_portaudio.c index 9303e468..dbb59982 100755 --- a/desiredata/src/s_audio_portaudio.c +++ b/desiredata/src/s_audio_portaudio.c @@ -10,7 +10,7 @@ /* tb: requires portaudio >= V19 */ -#include "m_pd.h" +#include "desire.h" #include <stdio.h> #include <string.h> #include <stdlib.h> @@ -239,9 +239,9 @@ static void pa_listdevs() { post("%d outputs ", pdi->maxOutputChannels); if (i == Pa_GetDefaultInputDevice()) post(" (Default Input)"); if (i == Pa_GetDefaultOutputDevice()) post(" (Default Output)"); - post(""); + post("%s",""); } - post(""); + post("%s",""); return; error: error("Error #%d occurred while using the portaudio stream: %s\n", err, Pa_GetErrorText(err)); |