mirror of
https://github.com/alsa-project/alsa-lib.git
synced 2026-02-16 22:05:18 -05:00
fix a signedness warning
This commit is contained in:
parent
6329db3af1
commit
ffcffac13d
1 changed files with 1 additions and 1 deletions
|
|
@ -885,7 +885,7 @@ int snd_pcm_direct_initialize_slave(snd_pcm_direct_t *dmix, snd_pcm_t *spcm, str
|
||||||
SND_PCM_FORMAT_S24_3LE,
|
SND_PCM_FORMAT_S24_3LE,
|
||||||
};
|
};
|
||||||
snd_pcm_format_t format;
|
snd_pcm_format_t format;
|
||||||
int i;
|
unsigned int i;
|
||||||
|
|
||||||
for (i = 0; i < sizeof dmix_formats / sizeof dmix_formats[0]; ++i) {
|
for (i = 0; i < sizeof dmix_formats / sizeof dmix_formats[0]; ++i) {
|
||||||
format = dmix_formats[i];
|
format = dmix_formats[i];
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue