Skip to content

Commit 700fe6f

Browse files
committed
ALSA: seq: Fix yet another spot for system message conversion
We fixed the incorrect UMP type for system messages in the recent commit, but it missed one place in system_ev_to_ump_midi1(). Fix it now. Fixes: e9e0281 ("ALSA: seq: Automatic conversion of UMP events") Fixes: c2bb79613fed ("ALSA: seq: Fix incorrect UMP type for system messages") Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Takashi Iwai <[email protected]>
1 parent bc42ca0 commit 700fe6f

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

sound/core/seq/seq_ump_convert.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -729,6 +729,7 @@ static int system_ev_to_ump_midi1(const struct snd_seq_event *event,
729729
union snd_ump_midi1_msg *data,
730730
unsigned char status)
731731
{
732+
data->system.type = UMP_MSG_TYPE_SYSTEM; // override
732733
data->system.status = status;
733734
return 1;
734735
}

0 commit comments

Comments
 (0)