]> Repos - portaudio/commitdiff
remove extra parameter from debug statement to prevent pointer error
authorphilburk <philburk@0f58301d-fd10-0410-b4af-bbb618454e57>
Mon, 3 Nov 2008 19:31:30 +0000 (19:31 +0000)
committerphilburk <philburk@0f58301d-fd10-0410-b4af-bbb618454e57>
Mon, 3 Nov 2008 19:31:30 +0000 (19:31 +0000)
src/common/pa_front.c

index 11a945e0dcfdafb1dfc62f6dee8105822023c4cd..22a7fda31389cefe1d66b6d2782ac8d99a6d4b2d 100644 (file)
@@ -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