From: philburk Date: Mon, 3 Nov 2008 19:31:30 +0000 (+0000) Subject: remove extra parameter from debug statement to prevent pointer error X-Git-Tag: svn/1415~19 X-Git-Url: https://andrewgundersen.net/repos?a=commitdiff_plain;h=e430a7cc36bd0464ef7639ea4d72c4a724bcaed9;p=portaudio remove extra parameter from debug statement to prevent pointer error --- diff --git a/src/common/pa_front.c b/src/common/pa_front.c index 11a945e..22a7fda 100644 --- a/src/common/pa_front.c +++ b/src/common/pa_front.c @@ -1506,7 +1506,7 @@ const PaStreamInfo* Pa_GetStreamInfo( PaStream *stream ) result = 0; PA_LOGAPI(("Pa_GetStreamInfo returned:\n" )); - PA_LOGAPI(("\tconst PaStreamInfo*: 0 [PaError error:%d ( %s )]\n", result, error, Pa_GetErrorText( error ) )); + PA_LOGAPI(("\tconst PaStreamInfo*: 0 [PaError error:%d ( %s )]\n", error, Pa_GetErrorText( error ) )); } else