From 84c151e415f919a627500086317f597528b3259a Mon Sep 17 00:00:00 2001 From: DL1YCF Date: Tue, 18 May 2021 19:40:22 +0200 Subject: [PATCH] added debug statement to alsa_midi --- alsa_midi.c | 1 + 1 file changed, 1 insertion(+) diff --git a/alsa_midi.c b/alsa_midi.c index 865cb21..808a2bf 100644 --- a/alsa_midi.c +++ b/alsa_midi.c @@ -220,6 +220,7 @@ void register_midi_device(int index) { void close_midi_device(int index) { int ret; + g_print("%s: index=%d\n", __FUNCTION__, index); if (index < 0 || index > MAX_MIDI_DEVICES) return; if (midi_devices[index].active == 0) return; -- 2.45.2