diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2012-06-10 03:49:31 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-06-10 03:49:31 +0200 |
commit | 4bfee465e99cb3ef5da4db04e7eec4e5f2fec0cc (patch) | |
tree | f1a1630f752dc369a11fbe562edecbb25f011eeb /libavutil/bprint.c | |
parent | d35c27db639f7b9ce919c185d3b1eb8acd1ed9c7 (diff) | |
download | ffmpeg-4bfee465e99cb3ef5da4db04e7eec4e5f2fec0cc.tar.gz |
bprint-test: avoid z modifier, mingw fails with it
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavutil/bprint.c')
-rw-r--r-- | libavutil/bprint.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/libavutil/bprint.c b/libavutil/bprint.c index 75344f7b72..f9d5d6ad40 100644 --- a/libavutil/bprint.c +++ b/libavutil/bprint.c @@ -191,36 +191,36 @@ int main(void) av_bprint_init(&b, 0, -1); bprint_pascal(&b, 5); - printf("Short text in unlimited buffer: %zu/%u\n", strlen(b.str), b.len); + printf("Short text in unlimited buffer: %u/%u\n", (unsigned)strlen(b.str), b.len); printf("%s\n", b.str); av_bprint_finalize(&b, NULL); av_bprint_init(&b, 0, -1); bprint_pascal(&b, 25); - printf("Long text in unlimited buffer: %zu/%u\n", strlen(b.str), b.len); + printf("Long text in unlimited buffer: %u/%u\n", (unsigned)strlen(b.str), b.len); av_bprint_finalize(&b, NULL); av_bprint_init(&b, 0, 2048); bprint_pascal(&b, 25); - printf("Long text in limited buffer: %zu/%u\n", strlen(b.str), b.len); + printf("Long text in limited buffer: %u/%u\n", (unsigned)strlen(b.str), b.len); av_bprint_finalize(&b, NULL); av_bprint_init(&b, 0, 1); bprint_pascal(&b, 5); - printf("Short text in automatic buffer: %zu/%u\n", strlen(b.str), b.len); + printf("Short text in automatic buffer: %u/%u\n", (unsigned)strlen(b.str), b.len); av_bprint_init(&b, 0, 1); bprint_pascal(&b, 25); - printf("Long text in automatic buffer: %zu/%u\n", strlen(b.str)/8*8, b.len); + printf("Long text in automatic buffer: %u/%u\n", (unsigned)strlen(b.str)/8*8, b.len); /* Note that the size of the automatic buffer is arch-dependant. */ av_bprint_init(&b, 0, 0); bprint_pascal(&b, 25); - printf("Long text count only buffer: %zu/%u\n", strlen(b.str), b.len); + printf("Long text count only buffer: %u/%u\n", (unsigned)strlen(b.str), b.len); av_bprint_init_for_buffer(&b, buf, sizeof(buf)); bprint_pascal(&b, 25); - printf("Long text count only buffer: %zu/%u\n", strlen(buf), b.len); + printf("Long text count only buffer: %u/%u\n", (unsigned)strlen(buf), b.len); return 0; } |