From 539d255871c9b3b2529c7c74167dc0e0a237452f Mon Sep 17 00:00:00 2001 From: Anton Khirnov Date: Mon, 13 Jan 2014 11:56:59 +0100 Subject: [PATCH] lavf: use a fixed width type It's shorter and more consistent with the rest of the code. (cherry picked from commit 8b76362836f3c373c3aadc544522edcbef16dd5f) Signed-off-by: Anton Khirnov --- libavformat/utils.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/utils.c b/libavformat/utils.c index fb6606be9a..6cc4178f5c 100644 --- a/libavformat/utils.c +++ b/libavformat/utils.c @@ -358,7 +358,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) {