summaryrefslogtreecommitdiff
path: root/libavcodec/g2meet.c
diff options
context:
space:
mode:
authorCarl Eugen Hoyos <cehoyos@ag.or.at>2016-03-09 14:00:22 +0100
committerCarl Eugen Hoyos <cehoyos@ag.or.at>2016-03-09 14:00:22 +0100
commit144ef773c7140d1ea49d54e65e989f4edcfe9958 (patch)
tree651757787a5424a0dad0a4a0df984cdb8aafbd6a /libavcodec/g2meet.c
parent953b8c5a43ef3f48cc0464857efffe8fdc769b3d (diff)
Use correct msvc type specifiers for ptrdiff_t and size_t.
Diffstat (limited to 'libavcodec/g2meet.c')
-rw-r--r--libavcodec/g2meet.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/g2meet.c b/libavcodec/g2meet.c
index 51e8bbcd7b..b0af3ec046 100644
--- a/libavcodec/g2meet.c
+++ b/libavcodec/g2meet.c
@@ -900,7 +900,7 @@ static int epic_jb_decode_tile(G2MContext *c, int tile_x, int tile_y,
}
if (src_size < els_dsize) {
- av_log(avctx, AV_LOG_ERROR, "ePIC: data too short, needed %zu, got %zu\n",
+ av_log(avctx, AV_LOG_ERROR, "ePIC: data too short, needed %"SIZE_SPECIFIER", got %"SIZE_SPECIFIER"\n",
els_dsize, src_size);
return AVERROR_INVALIDDATA;
}