Browse code

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

Originally committed as revision 13454 to svn://svn.ffmpeg.org/ffmpeg/trunk

Baptiste Coudurier authored on 2008/05/27 10:19:19
Showing 1 changed files
... ...
@@ -93,7 +93,7 @@ URLProtocol file_protocol = {
93 93
 static int pipe_open(URLContext *h, const char *filename, int flags)
94 94
 {
95 95
     int fd;
96
-    const char * final;
96
+    char *final;
97 97
     av_strstart(filename, "pipe:", &filename);
98 98
 
99 99
     fd = strtol(filename, &final, 10);