Commit e22f8610 authored by bcoudurier's avatar bcoudurier

remove const qualifier, removes warning:

libavformat/file.c:99: warning: passing argument 2 of 'strtol' from incompatible pointer type


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@13454 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 161e654f
...@@ -93,7 +93,7 @@ URLProtocol file_protocol = { ...@@ -93,7 +93,7 @@ URLProtocol file_protocol = {
static int pipe_open(URLContext *h, const char *filename, int flags) static int pipe_open(URLContext *h, const char *filename, int flags)
{ {
int fd; int fd;
const char * final; char *final;
av_strstart(filename, "pipe:", &filename); av_strstart(filename, "pipe:", &filename);
fd = strtol(filename, &final, 10); fd = strtol(filename, &final, 10);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment