From 4cf97abb98fb5755342ee7eb0d15cc4786387b5e Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Mon, 4 Feb 2008 00:26:43 +0000 Subject: [PATCH] Missing const found by -Wwrite-strings. Originally committed as revision 11841 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavformat/nutenc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/nutenc.c b/libavformat/nutenc.c index 8d05377..bd326bc 100644 --- a/libavformat/nutenc.c +++ b/libavformat/nutenc.c @@ -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); -- 2.7.4