diff options
author | reimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2008-10-19 17:28:23 +0000 |
---|---|---|
committer | reimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2008-10-19 17:28:23 +0000 |
commit | 834d4c5b7b9a2c0344445cfb1719e37838ea5844 (patch) | |
tree | 36fe7e45ef08994a9cf21c99615d63cb368894fb /stream | |
parent | 33f7abfe2c8140922ddf90c28b43744957cdae3f (diff) |
Remove useless casts.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27803 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'stream')
-rw-r--r-- | stream/cache2.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/stream/cache2.c b/stream/cache2.c index 7decd32d01..b7326b4832 100644 --- a/stream/cache2.c +++ b/stream/cache2.c @@ -375,10 +375,10 @@ static void ThreadProc( void *s ){ // 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); } } |