[FFmpeg-cvslog] r13454 - trunk/libavformat/file.c

bcoudurier subversion
Tue May 27 03:19:19 CEST 2008


Author: bcoudurier
Date: Tue May 27 03:19:19 2008
New Revision: 13454

Log:
remove const qualifier, removes warning:
libavformat/file.c:99: warning: passing argument 2 of 'strtol' from incompatible pointer type


Modified:
   trunk/libavformat/file.c

Modified: trunk/libavformat/file.c
==============================================================================
--- trunk/libavformat/file.c	(original)
+++ trunk/libavformat/file.c	Tue May 27 03:19:19 2008
@@ -93,7 +93,7 @@ URLProtocol file_protocol = {
 static int pipe_open(URLContext *h, const char *filename, int flags)
 {
     int fd;
-    const char * final;
+    char *final;
     av_strstart(filename, "pipe:", &filename);
 
     fd = strtol(filename, &final, 10);




More information about the ffmpeg-cvslog mailing list