Completed renaming drain->stop, flush->drain (PCM). Done renaming drain->drop, flush->drain (rawmidi and seq). Removed wrong module usage count inc/dec from mmap

This commit is contained in:
Abramo Bagnara 2000-09-29 20:49:18 +00:00
parent 7088f19233
commit 2ea3fd4bb3
22 changed files with 86 additions and 86 deletions

View file

@ -200,9 +200,9 @@ int main(int argc, char** argv)
fprintf(stderr,"Closing\n");
}
snd_rawmidi_input_flush(handle_in);
snd_rawmidi_input_drain(handle_in);
snd_rawmidi_close(handle_in);
snd_rawmidi_output_flush(handle_out);
snd_rawmidi_output_drain(handle_out);
snd_rawmidi_close(handle_out);
return 0;