From 48490a528ad533a8d6e0d67013005e7947457460 Mon Sep 17 00:00:00 2001 From: Philipp Wiesemann Date: Tue, 30 Aug 2016 21:16:04 +0200 Subject: [PATCH] Fixed log message in audio capture test program. --- test/testaudiocapture.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/testaudiocapture.c b/test/testaudiocapture.c index 14bac97c802b7..26321a71c34b3 100644 --- a/test/testaudiocapture.c +++ b/test/testaudiocapture.c @@ -135,7 +135,7 @@ main(int argc, char **argv) SDL_Log("Opening default playback device...\n"); devid_out = SDL_OpenAudioDevice(NULL, SDL_FALSE, &wanted, &spec, SDL_AUDIO_ALLOW_ANY_CHANGE); if (!devid_out) { - SDL_LogError(SDL_LOG_CATEGORY_APPLICATION, "Couldn't open an audio device for capture: %s!\n", SDL_GetError()); + SDL_LogError(SDL_LOG_CATEGORY_APPLICATION, "Couldn't open an audio device for playback: %s!\n", SDL_GetError()); SDL_Quit(); exit(1); }