From f2175f138424e4469e03cd08830f0ef7e84d1731 Mon Sep 17 00:00:00 2001 From: Jaroslav Kysela Date: Tue, 23 Mar 2004 15:15:21 +0000 Subject: [PATCH] Fixed thinkos in documentation (filter example) --- src/seq/seq.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/seq/seq.c b/src/seq/seq.c index c4754b5e..8dfaf482 100644 --- a/src/seq/seq.c +++ b/src/seq/seq.c @@ -763,15 +763,13 @@ after some modification, will appear as following: \code void event_filter(snd_seq_t *seq, snd_seq_event_t *ev) { - snd_seq_event_t *ev; - while (snd_seq_event_input(seq, &ev) >= 0) { //.. modify input event .. snd_seq_ev_set_source(ev, my_port); snd_seq_ev_set_subs(ev); snd_seq_ev_set_direct(ev); - snd_seq_event_output(seq, &ev); + snd_seq_event_output(seq, ev); snd_seq_drain_output(seq); } } -- 2.11.0