Commit 4cf97abb authored by Michael Niedermayer's avatar Michael Niedermayer

Missing const found by -Wwrite-strings.

Originally committed as revision 11841 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 20e4beae
......@@ -317,7 +317,7 @@ static int write_streamheader(NUTContext *nut, ByteIOContext *bc, AVCodecContext
return 0;
}
static int add_info(ByteIOContext *bc, char *type, char *value){
static int add_info(ByteIOContext *bc, const char *type, const char *value){
put_str(bc, type);
put_s(bc, -1);
put_str(bc, value);
......
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