# HG changeset patch # User michael # Date 1202086912 0 # Node ID 6eaceb561ae92bf4494c0e3d5fc78b99b91b2b93 # Parent bec20ba1e19485dfa72e66627ef6c12089d18fc2 Another const found by -Wwrite-strings. diff -r bec20ba1e194 -r 6eaceb561ae9 mp3.c --- a/mp3.c Mon Feb 04 00:42:27 2008 +0000 +++ b/mp3.c Mon Feb 04 01:01:52 2008 +0000 @@ -564,7 +564,7 @@ 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);