[MPlayer-cvslog] r35972 - trunk/TOOLS/netstream.c

reimar subversion at mplayerhq.hu
Sat Mar 16 09:50:08 CET 2013


Author: reimar
Date: Sat Mar 16 09:50:08 2013
New Revision: 35972

Log:
Remove useless cast (at best it will break things).

Modified:
   trunk/TOOLS/netstream.c

Modified: trunk/TOOLS/netstream.c
==============================================================================
--- trunk/TOOLS/netstream.c	Sat Mar 16 09:44:32 2013	(r35971)
+++ trunk/TOOLS/netstream.c	Sat Mar 16 09:50:08 2013	(r35972)
@@ -139,7 +139,7 @@ static int net_stream_seek(client_t* cl,
     return 1;
   }
 
-  if(!stream_seek(cl->stream,(off_t)pos)) {
+  if(!stream_seek(cl->stream,pos)) {
     if(!write_error(cl->fd,"Seek failed\n"))
       return 0;
     return 1;


More information about the MPlayer-cvslog mailing list