summaryrefslogtreecommitdiff
path: root/libavformat/apetag.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2015-02-15 21:41:46 +0100
committerMichael Niedermayer <michaelni@gmx.at>2015-02-15 21:43:28 +0100
commit2870b86c2a9fac3a52b82604e4b8aaf7360da04e (patch)
tree238857420e013b1ba6ea34ad0fda43404c620418 /libavformat/apetag.c
parentfa321cc0c8edabc790bcea41ceeecb226ed8d5a5 (diff)
parente1a57cbb1c2752feb9315f748836dc44e58d2dc6 (diff)
Merge commit 'e1a57cbb1c2752feb9315f748836dc44e58d2dc6'
* commit 'e1a57cbb1c2752feb9315f748836dc44e58d2dc6': ape: Use the proper variable type Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/apetag.c')
-rw-r--r--libavformat/apetag.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/apetag.c b/libavformat/apetag.c
index 258bdaa1b6..26359205f8 100644
--- a/libavformat/apetag.c
+++ b/libavformat/apetag.c
@@ -38,7 +38,7 @@ static int ape_tag_read_field(AVFormatContext *s)
{
AVIOContext *pb = s->pb;
uint8_t key[1024], *value;
- uint32_t size, flags;
+ int64_t size, flags;
int i, c;
size = avio_rl32(pb); /* field size */