From 8b76362836f3c373c3aadc544522edcbef16dd5f Mon Sep 17 00:00:00 2001 From: Anton Khirnov Date: Mon, 13 Jan 2014 11:56:59 +0100 Subject: lavf: use a fixed width type It's shorter and more consistent with the rest of the code. --- libavformat/utils.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavformat/utils.c') diff --git a/libavformat/utils.c b/libavformat/utils.c index 938f06fbae..460ec4514e 100644 --- a/libavformat/utils.c +++ b/libavformat/utils.c @@ -243,7 +243,7 @@ int av_probe_input_buffer(AVIOContext *pb, AVInputFormat **fmt, unsigned int offset, unsigned int max_probe_size) { AVProbeData pd = { filename ? filename : "" }; - unsigned char *buf = NULL; + uint8_t *buf = NULL; int ret = 0, probe_size; if (!max_probe_size) { -- cgit v1.2.3