# HG changeset patch # User bcoudurier # Date 1211851159 0 # Node ID dc671b723b25b9f739c6c8e317d1c3343c224cda # Parent a14d34ce682828f21c7de615429389a4e20a310c remove const qualifier, removes warning: libavformat/file.c:99: warning: passing argument 2 of 'strtol' from incompatible pointer type diff -r a14d34ce6828 -r dc671b723b25 file.c --- 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);