From 5b51efdc3a263e4ab59d5d66e5e2ec3413304e33 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Fri, 8 Jun 2012 12:14:36 +0200 Subject: fate-bprint: try to workaround platform specific value. this should fix some fate failures Signed-off-by: Michael Niedermayer --- libavutil/bprint.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavutil/bprint.c') diff --git a/libavutil/bprint.c b/libavutil/bprint.c index 646f0aab5d..75344f7b72 100644 --- a/libavutil/bprint.c +++ b/libavutil/bprint.c @@ -211,7 +211,7 @@ int main(void) av_bprint_init(&b, 0, 1); bprint_pascal(&b, 25); - printf("Long text in automatic buffer: %zu/%u\n", strlen(b.str), b.len); + printf("Long text in automatic buffer: %zu/%u\n", strlen(b.str)/8*8, b.len); /* Note that the size of the automatic buffer is arch-dependant. */ av_bprint_init(&b, 0, 0); -- cgit v1.2.3