Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fixed log message in audio capture test program.
  • Loading branch information
philippwiesemann committed Aug 30, 2016
1 parent 379a430 commit 48490a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/testaudiocapture.c
Expand Up @@ -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);
}
Expand Down

0 comments on commit 48490a5

Please sign in to comment.