diff options
Diffstat (limited to 'libavformat/vpk.c')
-rw-r--r-- | libavformat/vpk.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/vpk.c b/libavformat/vpk.c index bb9eabb2ba..1dfb8fcd70 100644 --- a/libavformat/vpk.c +++ b/libavformat/vpk.c @@ -29,7 +29,7 @@ typedef struct VPKDemuxContext { unsigned last_block_size; } VPKDemuxContext; -static int vpk_probe(AVProbeData *p) +static int vpk_probe(const AVProbeData *p) { if (AV_RL32(p->buf) != MKBETAG('V','P','K',' ')) return 0; |