# HG changeset patch # User mru # Date 1151239561 0 # Node ID 19ceddeafe2e39c1ff2f23f20b50d5ef47ec6731 # Parent 554cc16341da4a5772945c87d93089d72c58eff0 s/u_char/uint8_t/ accidentally copied from tcvp diff -r 554cc16341da -r 19ceddeafe2e ogg2.c --- a/ogg2.c Sun Jun 25 12:23:54 2006 +0000 +++ b/ogg2.c Sun Jun 25 12:46:01 2006 +0000 @@ -210,7 +210,7 @@ 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);