Commit 7ad3a46d76a19e41172eecbf264707bdbf7c0db4

Philipp Wiesemann 2016-11-05T21:23:17

ALSA: Fixed compile warning about unused function. Found by buildbot.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
diff --git a/src/audio/alsa/SDL_alsa_audio.c b/src/audio/alsa/SDL_alsa_audio.c
index 05c8862..149572e 100644
--- a/src/audio/alsa/SDL_alsa_audio.c
+++ b/src/audio/alsa/SDL_alsa_audio.c
@@ -310,12 +310,14 @@ swizzle_alsa_channels(_THIS, void *buffer, Uint32 bufferlen)
     /* !!! FIXME: update this for 7.1 if needed, later. */
 }
 
+#ifdef SND_CHMAP_API_VERSION
 /* Some devices have the right channel map, no swizzling necessary */
 static void
 no_swizzle(_THIS, void *buffer, Uint32 bufferlen)
 {
     return;
 }
+#endif /* SND_CHMAP_API_VERSION */
 
 
 static void