Mercurial > audlegacy-plugins
changeset 1632:67b5bf777a38
fix C99 initialisations
author | William Pitcock <nenolod@atheme.org> |
---|---|
date | Fri, 07 Sep 2007 05:15:11 -0500 |
parents | 3310b27b9ee3 |
children | 33626ca031f3 |
files | src/alsa/alsa.c |
diffstat | 1 files changed, 3 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/src/alsa/alsa.c Fri Sep 07 05:04:29 2007 -0500 +++ b/src/alsa/alsa.c Fri Sep 07 05:15:11 2007 -0500 @@ -30,13 +30,13 @@ .set_volume = alsa_set_volume, .open_audio = alsa_open, .write_audio = alsa_write, - .clean_audio = alsa_close, + .close_audio = alsa_close, .flush = alsa_flush, .pause = alsa_pause, .buffer_free = alsa_free, .buffer_playing = alsa_playing, - .get_output_time = alsa_get_output_time, - .get_written_time = alsa_get_written_time, + .output_time = alsa_get_output_time, + .written_time = alsa_get_written_time, .tell_audio = alsa_tell };