From df5c3f39e608d5c69d84399db43b3b2def8a1a19 Mon Sep 17 00:00:00 2001 From: Ross Bencina Date: Sun, 11 Sep 2016 00:25:30 +1000 Subject: [PATCH] wmme: fix possible unused variable warning (not a real issue) --- src/hostapi/wmme/pa_win_wmme.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hostapi/wmme/pa_win_wmme.c b/src/hostapi/wmme/pa_win_wmme.c index d214bd9..2da90f4 100644 --- a/src/hostapi/wmme/pa_win_wmme.c +++ b/src/hostapi/wmme/pa_win_wmme.c @@ -2368,7 +2368,7 @@ static PaError OpenStream( struct PaUtilHostApiRepresentation *hostApi, unsigned long hostInputBufferCount; unsigned long framesPerHostOutputBuffer; unsigned long hostOutputBufferCount; - unsigned long framesPerBufferProcessorCall; + unsigned long framesPerBufferProcessorCall = 0; PaWinMmeDeviceAndChannelCount *inputDevices = 0; /* contains all devices and channel counts as local host api ids, even when PaWinMmeUseMultipleDevices is not used */ unsigned long winMmeSpecificInputFlags = 0; unsigned long inputDeviceCount = 0; -- 2.43.0