Commit e73008a9 authored by michael's avatar michael

Missing const found by -Wwrite-strings.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@11841 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 3c0dd62d
......@@ -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