From 834d4c5b7b9a2c0344445cfb1719e37838ea5844 Mon Sep 17 00:00:00 2001 From: reimar Date: Sun, 19 Oct 2008 17:28:23 +0000 Subject: Remove useless casts. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27803 b3059339-0415-0410-9bf9-f77b7e298cf2 --- stream/cache2.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'stream') 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); } } -- cgit v1.2.3