remove const qualifier, removes warning:
authorBaptiste Coudurier <baptiste.coudurier@gmail.com>
Tue, 27 May 2008 01:19:19 +0000 (01:19 +0000)
committerBaptiste Coudurier <baptiste.coudurier@gmail.com>
Tue, 27 May 2008 01:19:19 +0000 (01:19 +0000)
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

libavformat/file.c

index 758c050212ebb90baa957b96e87e43b6e579a129..9640ff654e528c0736eb32217215308c49788eb8 100644 (file)
@@ -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);