[MPlayer-cvslog] CVS: main/libmpdemux stream_livedotcom.c,1.3,1.4

Dominik Mierzejewski CVS syncmail at mplayerhq.hu
Mon Dec 5 02:24:29 CET 2005


CVS change done by Dominik Mierzejewski CVS

Update of /cvsroot/mplayer/main/libmpdemux
In directory mail:/var2/tmp/cvs-serv23355/libmpdemux

Modified Files:
	stream_livedotcom.c 
Log Message:
fix

stream_livedotcom.c:70: warning: assignment makes pointer from integer without a cast
stream_livedotcom.c:77: warning: passing argument 1 of 'lseek' makes integer from pointer without a cast
stream_livedotcom.c:78: warning: passing argument 1 of 'lseek' makes integer from pointer without a cast
stream_livedotcom.c:84: warning: passing argument 1 of 'read' makes integer from pointer without a cast
stream_livedotcom.c:96: warning: control reaches end of non-void function



Index: stream_livedotcom.c
===================================================================
RCS file: /cvsroot/mplayer/main/libmpdemux/stream_livedotcom.c,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- stream_livedotcom.c	23 Sep 2005 22:35:04 -0000	1.3
+++ stream_livedotcom.c	5 Dec 2005 01:24:27 -0000	1.4
@@ -56,7 +56,7 @@
 }
 
 static int open_live_sdp(stream_t *stream,int mode, void* opts, int* file_format) {
-  FILE *f;
+  int f;
   char *filename = stream->url;
   off_t len;
   char* sdpDescription;
@@ -93,6 +93,7 @@
     *file_format = DEMUXER_TYPE_RTP;
     return STREAM_OK;
   }
+  return STREAM_UNSUPORTED;
 }
 
 




More information about the MPlayer-cvslog mailing list