changeset 3367:dc671b723b25 libavformat

remove const qualifier, removes warning: libavformat/file.c:99: warning: passing argument 2 of 'strtol' from incompatible pointer type
author bcoudurier
date Tue, 27 May 2008 01:19:19 +0000
parents a14d34ce6828
children 4a233106ccd0
files file.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/file.c	Mon May 26 23:59:28 2008 +0000
+++ b/file.c	Tue May 27 01:19:19 2008 +0000
@@ -93,7 +93,7 @@
 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);