Mercurial > mplayer.hg
changeset 3486:9eaee0d257e1
add missing newline in warning message
author | steve |
---|---|
date | Thu, 13 Dec 2001 23:37:57 +0000 |
parents | 439b0b1d50b9 |
children | 135926174ee8 |
files | libao2/ao_plugin.c |
diffstat | 1 files changed, 3 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/libao2/ao_plugin.c Thu Dec 13 23:37:27 2001 +0000 +++ b/libao2/ao_plugin.c Thu Dec 13 23:37:57 2001 +0000 @@ -194,10 +194,12 @@ while(plugin(i)) plugin(i++)->play(); /* Send data to output */ + //fprintf(stderr, "ao_plugin: ret_len=%d, len=%d\n", ret_len, len); len=driver()->play(ao_plugin_data.data,ao_plugin_data.len,flags); + //fprintf(stderr, "ao_plugin: returned len=%d\n", len); if(len!=ao_plugin_data.len) - fprintf(stderr,"[ao_plugin] Warning under or over flow in sound plugin"); + fprintf(stderr,"[ao_plugin] Warning under or over flow in sound plugin\n"); return ret_len; }