From: rossb Date: Thu, 25 Aug 2011 08:51:46 +0000 (+0000) Subject: added #include and deleted 2 unused variables from a test X-Git-Tag: pa_stable_v19_20111121_r1788~34 X-Git-Url: https://andrewgundersen.net/repos?a=commitdiff_plain;h=b3eeb36d059a644349069f5da939ea4629120399;p=portaudio added #include and deleted 2 unused variables from a test --- diff --git a/test/patest_suggested_vs_streaminfo_latency.c b/test/patest_suggested_vs_streaminfo_latency.c index a6584a5..fff1481 100644 --- a/test/patest_suggested_vs_streaminfo_latency.c +++ b/test/patest_suggested_vs_streaminfo_latency.c @@ -47,6 +47,7 @@ * license above. */ #include +#include #include #include "portaudio.h" @@ -99,11 +100,9 @@ int main( int argc, const char* argv[] ) PaStreamParameters outputParameters, inputParameters; PaStream *stream; PaError err; - int i; PaTime suggestedLatency; PaStreamInfo *streamInfo; PaDeviceInfo *deviceInfo; - int deviceCount; float sampleRate = SAMPLE_RATE; int framesPerBuffer = FRAMES_PER_BUFFER; err = Pa_Initialize();