diff options
author | Philipp Wiesemann <philipp.wiesemann@arcor.de> | 2016-08-30 21:16:04 +0200 |
---|---|---|
committer | Philipp Wiesemann <philipp.wiesemann@arcor.de> | 2016-08-30 21:16:04 +0200 |
commit | 0510ab75b316559d278735e7bd7a4c405916e2b1 (patch) | |
tree | a7b4ea85b9eddf26e0cfd90f46c2bc11f58e21eb /test | |
parent | f51cd13da882e172939df4d485801b84484ab11d (diff) |
Fixed log message in audio capture test program.
Diffstat (limited to 'test')
-rw-r--r-- | test/testaudiocapture.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/testaudiocapture.c b/test/testaudiocapture.c index 14bac97c80..26321a71c3 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); } |