ALSA: core: Fix format string mismatch in seq_midi.c
Fix format string mismatch in snd_seq_midisynth_register_port(). Argument type of p is unsigned int. Signed-off-by: Masanari Iida <standby24x7@gmail.com> Signed-off-by: Takashi Iwai <tiwai@suse.de>
This commit is contained in:
parent
a22aa26f75
commit
53403a8013
|
@ -362,13 +362,13 @@ snd_seq_midisynth_register_port(struct snd_seq_device *dev)
|
||||||
if (! port->name[0]) {
|
if (! port->name[0]) {
|
||||||
if (info->name[0]) {
|
if (info->name[0]) {
|
||||||
if (ports > 1)
|
if (ports > 1)
|
||||||
snprintf(port->name, sizeof(port->name), "%s-%d", info->name, p);
|
snprintf(port->name, sizeof(port->name), "%s-%u", info->name, p);
|
||||||
else
|
else
|
||||||
snprintf(port->name, sizeof(port->name), "%s", info->name);
|
snprintf(port->name, sizeof(port->name), "%s", info->name);
|
||||||
} else {
|
} else {
|
||||||
/* last resort */
|
/* last resort */
|
||||||
if (ports > 1)
|
if (ports > 1)
|
||||||
sprintf(port->name, "MIDI %d-%d-%d", card->number, device, p);
|
sprintf(port->name, "MIDI %d-%d-%u", card->number, device, p);
|
||||||
else
|
else
|
||||||
sprintf(port->name, "MIDI %d-%d", card->number, device);
|
sprintf(port->name, "MIDI %d-%d", card->number, device);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue