summaryrefslogtreecommitdiff
path: root/libavformat/utils.c
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2014-01-13 11:56:59 +0100
committerAnton Khirnov <anton@khirnov.net>2014-01-13 15:00:09 +0100
commit8b76362836f3c373c3aadc544522edcbef16dd5f (patch)
tree6254fdbad014e52a6af8f016ef0d8529d28b5867 /libavformat/utils.c
parentc1868e7ee7b07b40a0fe15f50df89fe499a01a50 (diff)
lavf: use a fixed width type
It's shorter and more consistent with the rest of the code.
Diffstat (limited to 'libavformat/utils.c')
-rw-r--r--libavformat/utils.c2
1 files changed, 1 insertions, 1 deletions
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) {