From 8ba563d4759aece8457238647fa15253e54175da Mon Sep 17 00:00:00 2001 From: Josh Coalson Date: Fri, 28 Jun 2002 05:26:27 +0000 Subject: [PATCH] minor fix to cast sizeof for printf --- src/test_libFLAC/bitbuffer.c | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/test_libFLAC/bitbuffer.c b/src/test_libFLAC/bitbuffer.c index 232d605..afcda56 100644 --- a/src/test_libFLAC/bitbuffer.c +++ b/src/test_libFLAC/bitbuffer.c @@ -183,7 +183,7 @@ FLAC__bool test_bitbuffer() return false; } if(bb->blurbs != sizeof(test_pattern1)) { - printf("FAILED byte count %u != %u\n", bb->blurbs, sizeof(test_pattern1)); + printf("FAILED byte count %u != %u\n", bb->blurbs, (unsigned)sizeof(test_pattern1)); FLAC__bitbuffer_dump(bb, stdout); return false; } @@ -213,7 +213,7 @@ FLAC__bool test_bitbuffer() return false; } if(bb->blurbs != sizeof(test_pattern1)) { - printf("FAILED byte count %u != %u\n", bb->blurbs, sizeof(test_pattern1)); + printf("FAILED byte count %u != %u\n", bb->blurbs, (unsigned)sizeof(test_pattern1)); FLAC__bitbuffer_dump(bb, stdout); return false; } @@ -243,7 +243,7 @@ FLAC__bool test_bitbuffer() return false; } if(bb->blurbs != sizeof(test_pattern1)) { - printf("FAILED byte count %u != %u\n", bb->blurbs, sizeof(test_pattern1)); + printf("FAILED byte count %u != %u\n", bb->blurbs, (unsigned)sizeof(test_pattern1)); FLAC__bitbuffer_dump(bb, stdout); return false; } @@ -273,7 +273,7 @@ FLAC__bool test_bitbuffer() return false; } if(bb->blurbs != sizeof(test_pattern1)) { - printf("FAILED byte count %u != %u\n", bb->blurbs, sizeof(test_pattern1)); + printf("FAILED byte count %u != %u\n", bb->blurbs, (unsigned)sizeof(test_pattern1)); FLAC__bitbuffer_dump(bb, stdout); return false; } @@ -305,7 +305,7 @@ FLAC__bool test_bitbuffer() return false; } if(bb->blurbs != sizeof(test_pattern1)+1) { - printf("FAILED byte count %u != %u\n", bb->blurbs, sizeof(test_pattern1)+1); + printf("FAILED byte count %u != %u\n", bb->blurbs, (unsigned)sizeof(test_pattern1)+1); FLAC__bitbuffer_dump(bb, stdout); return false; } @@ -337,7 +337,7 @@ FLAC__bool test_bitbuffer() return false; } if(bb->blurbs != sizeof(test_pattern1)+1) { - printf("FAILED byte count %u != %u\n", bb->blurbs, sizeof(test_pattern1)+1); + printf("FAILED byte count %u != %u\n", bb->blurbs, (unsigned)sizeof(test_pattern1)+1); FLAC__bitbuffer_dump(bb, stdout); return false; } @@ -369,7 +369,7 @@ FLAC__bool test_bitbuffer() return false; } if(bb->blurbs != sizeof(test_pattern1)+2) { - printf("FAILED byte count %u != %u\n", bb->blurbs, sizeof(test_pattern1)+2); + printf("FAILED byte count %u != %u\n", bb->blurbs, (unsigned)sizeof(test_pattern1)+2); FLAC__bitbuffer_dump(bb, stdout); return false; } @@ -400,7 +400,7 @@ FLAC__bool test_bitbuffer() return false; } if(bb->blurbs != sizeof(test_pattern1)+4) { - printf("FAILED byte count %u != %u\n", bb->blurbs, sizeof(test_pattern1)+4); + printf("FAILED byte count %u != %u\n", bb->blurbs, (unsigned)sizeof(test_pattern1)+4); FLAC__bitbuffer_dump(bb, stdout); return false; } -- 2.7.4