From: Jaroslav Kysela Date: Tue, 23 Mar 2004 15:15:21 +0000 (+0000) Subject: Fixed thinkos in documentation (filter example) X-Git-Tag: v1.0.4~8 X-Git-Url: https://git.alsa-project.org/?a=commitdiff_plain;h=f2175f138424e4469e03cd08830f0ef7e84d1731;p=alsa-lib.git Fixed thinkos in documentation (filter example) --- 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); } }