summaryrefslogtreecommitdiff
path: root/libavformat/ogg2.c
diff options
context:
space:
mode:
authorMåns Rullgård <mans@mansr.com>2006-06-25 12:46:01 +0000
committerMåns Rullgård <mans@mansr.com>2006-06-25 12:46:01 +0000
commitea02862a9b524dde425b6170ff5d94dc3d45f7b6 (patch)
treeeb21f7d144bd1032d0ef2b7f0a4a2da5c362b79f /libavformat/ogg2.c
parent40c5e1fa2e5fd668ed69528d91521b46ec64f96a (diff)
s/u_char/uint8_t/ accidentally copied from tcvp
Originally committed as revision 5524 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/ogg2.c')
-rw-r--r--libavformat/ogg2.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/ogg2.c b/libavformat/ogg2.c
index b29bfe9cab..1a0eb38821 100644
--- a/libavformat/ogg2.c
+++ b/libavformat/ogg2.c
@@ -210,7 +210,7 @@ static int
ogg_new_buf(ogg_t *ogg, int idx)
{
ogg_stream_t *os = ogg->streams + idx;
- u_char *nb = av_malloc(os->bufsize);
+ uint8_t *nb = av_malloc(os->bufsize);
int size = os->bufpos - os->pstart;
if(os->buf){
memcpy(nb, os->buf + os->pstart, size);