Commit ec3cdb3e authored by michael's avatar michael

Another const found by -Wwrite-strings.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@11847 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 56f30efb
......@@ -564,7 +564,7 @@ static void id3v2_put_size(AVFormatContext *s, int size)
put_byte(s->pb, size & 0x7f);
}
static void id3v2_put_ttag(AVFormatContext *s, char *string, uint32_t tag)
static void id3v2_put_ttag(AVFormatContext *s, const char *string, uint32_t tag)
{
int len = strlen(string);
put_be32(s->pb, tag);
......
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