Skip to content

Commit

Permalink
ALSA sequencer client: Define port as SND_SEQ_PORT_TYPE_MIDI_GENERIC
Browse files Browse the repository at this point in the history
  • Loading branch information
NY00123 committed Dec 20, 2023
1 parent aefdb33 commit 16e9f74
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utils/adlalsaseq/adlalsaseq.c
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ static ALSA_Seq_Data midi_open(void)
data.port = snd_seq_create_simple_port(
data.handle, "libADLMIDI port",
SND_SEQ_PORT_CAP_WRITE|SND_SEQ_PORT_CAP_SUBS_WRITE,
SND_SEQ_PORT_TYPE_APPLICATION);
SND_SEQ_PORT_TYPE_APPLICATION|SND_SEQ_PORT_TYPE_MIDI_GENERIC);
check_seq_error(data.port, "Could not create sequencer port");

data.n_connections = 0;
Expand Down

0 comments on commit 16e9f74

Please sign in to comment.