From ea02862a9b524dde425b6170ff5d94dc3d45f7b6 Mon Sep 17 00:00:00 2001 From: Måns Rullgård Date: Sun, 25 Jun 2006 12:46:01 +0000 Subject: s/u_char/uint8_t/ accidentally copied from tcvp Originally committed as revision 5524 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavformat/ogg2.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavformat/ogg2.c') 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); -- cgit v1.2.3