Mercurial > mplayer.hg
changeset 27769:80d3dab37bb2
Remove useless casts.
author | reimar |
---|---|
date | Sun, 19 Oct 2008 17:28:23 +0000 |
parents | ffd1bd7043e6 |
children | c8d4cace053d |
files | stream/cache2.c |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/stream/cache2.c Sun Oct 19 11:47:46 2008 +0000 +++ b/stream/cache2.c Sun Oct 19 17:28:23 2008 +0000 @@ -375,10 +375,10 @@ // cache thread mainloop: signal(SIGTERM,exit_sighandler); // kill while(1){ - if(!cache_fill((cache_vars_t*)s)){ + if(!cache_fill(s)){ usec_sleep(FILL_USLEEP_TIME); // idle } - cache_execute_control((cache_vars_t*)s); + cache_execute_control(s); // cache_stats(s->cache_data); } }