diff options
author | Zdenek Kabelac <kabi@informatics.muni.cz> | 2002-11-11 09:20:53 +0000 |
---|---|---|
committer | Zdenek Kabelac <kabi@informatics.muni.cz> | 2002-11-11 09:20:53 +0000 |
commit | 0570bf06d45ae3e5c73cb0b32b2101e2668f91e9 (patch) | |
tree | d1d7bfe919af0988a4d5e5b3e77b75bfb68bd1e6 /libav/aviobuf.c | |
parent | e8c0008912fd1573fdda97988eb5f5e6e50a636a (diff) | |
download | ffmpeg-0570bf06d45ae3e5c73cb0b32b2101e2668f91e9.tar.gz |
* cleanup statics & const
Originally committed as revision 1188 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libav/aviobuf.c')
-rw-r--r-- | libav/aviobuf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libav/aviobuf.c b/libav/aviobuf.c index 27f6b5d38a..2e931bd849 100644 --- a/libav/aviobuf.c +++ b/libav/aviobuf.c @@ -219,7 +219,7 @@ void put_be16(ByteIOContext *s, unsigned int val) put_byte(s, val); } -void put_tag(ByteIOContext *s, char *tag) +void put_tag(ByteIOContext *s, const char *tag) { while (*tag) { put_byte(s, *tag++); |