提交 fbcb0811 编写于 作者: B Baptiste Coudurier

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
上级 1eacdcc6
......@@ -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);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册