Skip to content

Commit

Permalink
lavf: use a fixed width type
Browse files Browse the repository at this point in the history
It's shorter and more consistent with the rest of the code.
  • Loading branch information
elenril committed Jan 13, 2014
1 parent c1868e7 commit 8b76362
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libavformat/utils.c
Expand Up @@ -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) {
Expand Down

0 comments on commit 8b76362

Please sign in to comment.