summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSolomon Peachy <pizza@shaftnet.org>2021-04-08 23:10:41 -0400
committerSolomon Peachy <pizza@shaftnet.org>2021-04-08 23:10:41 -0400
commite86d90905be290ff24a774e9687eca3236953490 (patch)
tree6fcd21751793e91515072b38f11f8a3c2b7f2653
parent54fcb907c1c0397973208debea876ef5753d529c (diff)
downloadrockbox-e86d90905be290ff24a774e9687eca3236953490.tar.gz
rockbox-e86d90905be290ff24a774e9687eca3236953490.zip
alsa: Fix an #ifdef typo in 54fcb907c1
HAE_ALSA_32BIT -> HAVE_ALSA_32BIT Change-Id: Icf375d42f6b20e8393b6ffe6d23b3ac96abb571b
-rw-r--r--firmware/target/hosted/pcm-alsa.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/target/hosted/pcm-alsa.c b/firmware/target/hosted/pcm-alsa.c
index e2f8a346a9..16f82bad5c 100644
--- a/firmware/target/hosted/pcm-alsa.c
+++ b/firmware/target/hosted/pcm-alsa.c
@@ -69,7 +69,7 @@
69#endif 69#endif
70 70
71static const snd_pcm_access_t access_ = SND_PCM_ACCESS_RW_INTERLEAVED; /* access mode */ 71static const snd_pcm_access_t access_ = SND_PCM_ACCESS_RW_INTERLEAVED; /* access mode */
72#if defined(HAE_ALSA_32BIT) 72#if defined(HAVE_ALSA_32BIT)
73static const snd_pcm_format_t format = SND_PCM_FORMAT_S32_LE; /* sample format */ 73static const snd_pcm_format_t format = SND_PCM_FORMAT_S32_LE; /* sample format */
74typedef int32_t sample_t; 74typedef int32_t sample_t;
75#else 75#else