Browse Source

Another const found by -Wwrite-strings.

Originally committed as revision 11847 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Michael Niedermayer 17 years ago
parent
commit
8df94c73dc
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavformat/mp3.c

+ 1
- 1
libavformat/mp3.c View File

@@ -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);


Loading…
Cancel
Save