Fix patest1 printf (#467)

* Fix patest1.c printf

Got changed from fprintf() accidentally.

Fixes #466
This commit is contained in:
Phil Burk 2021-01-24 14:54:28 -08:00 committed by GitHub
parent 6a86d4bd3b
commit 68e1c5685b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -126,7 +126,7 @@ int main(int argc, char* argv[])
inputParameters.device = Pa_GetDefaultInputDevice(); /* default input device */
if (inputParameters.device == paNoDevice) {
printf(stderr,"Error: No input default device.\n");
fprintf(stderr, "Error: No input default device.\n");
goto done;
}
inputParameters.channelCount = 2; /* stereo input */