alsa: Fix an #ifdef typo in 54fcb907c1
HAE_ALSA_32BIT -> HAVE_ALSA_32BIT Change-Id: Icf375d42f6b20e8393b6ffe6d23b3ac96abb571b
This commit is contained in:
parent
54fcb907c1
commit
e86d90905b
1 changed files with 1 additions and 1 deletions
|
@ -69,7 +69,7 @@
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
static const snd_pcm_access_t access_ = SND_PCM_ACCESS_RW_INTERLEAVED; /* access mode */
|
static const snd_pcm_access_t access_ = SND_PCM_ACCESS_RW_INTERLEAVED; /* access mode */
|
||||||
#if defined(HAE_ALSA_32BIT)
|
#if defined(HAVE_ALSA_32BIT)
|
||||||
static const snd_pcm_format_t format = SND_PCM_FORMAT_S32_LE; /* sample format */
|
static const snd_pcm_format_t format = SND_PCM_FORMAT_S32_LE; /* sample format */
|
||||||
typedef int32_t sample_t;
|
typedef int32_t sample_t;
|
||||||
#else
|
#else
|
||||||
|
|
Loading…
Reference in a new issue