aboutsummaryrefslogtreecommitdiffstats
path: root/libav/aviobuf.c
diff options
context:
space:
mode:
authorZdenek Kabelac <kabi@informatics.muni.cz>2002-11-11 09:20:53 +0000
committerZdenek Kabelac <kabi@informatics.muni.cz>2002-11-11 09:20:53 +0000
commit0570bf06d45ae3e5c73cb0b32b2101e2668f91e9 (patch)
treed1d7bfe919af0988a4d5e5b3e77b75bfb68bd1e6 /libav/aviobuf.c
parente8c0008912fd1573fdda97988eb5f5e6e50a636a (diff)
downloadffmpeg-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.c2
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++);