mirror of
https://github.com/torvalds/linux
synced 2024-11-05 18:23:50 +00:00
ALSA: lola: fix format type mismatch in sound/pci/lola/lola_proc.c
Signed-off-by: Toralf Förster <toralf.foerster@gmx.de> Signed-off-by: Takashi Iwai <tiwai@suse.de>
This commit is contained in:
parent
e7fc496066
commit
2d3a277822
1 changed files with 1 additions and 1 deletions
|
@ -151,7 +151,7 @@ static void lola_proc_codec_rw_write(struct snd_info_entry *entry,
|
|||
char line[64];
|
||||
unsigned int id, verb, data, extdata;
|
||||
while (!snd_info_get_line(buffer, line, sizeof(line))) {
|
||||
if (sscanf(line, "%i %i %i %i", &id, &verb, &data, &extdata) != 4)
|
||||
if (sscanf(line, "%u %u %u %u", &id, &verb, &data, &extdata) != 4)
|
||||
continue;
|
||||
lola_codec_read(chip, id, verb, data, extdata,
|
||||
&chip->debug_res,
|
||||
|
|
Loading…
Reference in a new issue