From 81f74400d955411f464554fc49061c0c862291aa Mon Sep 17 00:00:00 2001 From: Andreas Schiffler Date: Mon, 18 Feb 2013 07:59:05 -0800 Subject: [PATCH] Fix bug 1723: flipped log text in audio suite - thanks P. Wiesemann --- test/testautomation_audio.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/testautomation_audio.c b/test/testautomation_audio.c index c28486ff3..b593e0da1 100644 --- a/test/testautomation_audio.c +++ b/test/testautomation_audio.c @@ -46,7 +46,7 @@ int audio_enumerateAndNameAudioDevices() /* Get number of devices. */ n = SDL_GetNumAudioDevices(t); SDLTest_AssertPass("Call to SDL_GetNumAudioDevices(%i)", t); - SDLTest_Log("Number of %s devices < 0, reported as %i", (t) ? "output" : "capture", n); + SDLTest_Log("Number of %s devices < 0, reported as %i", (t) ? "capture" : "output", n); SDLTest_AssertCheck(n >= 0, "Validate result is >= 0, got: %i", n); /* Variation of non-zero type */