From: Yue Hu <[email protected]> badlz4.c:72:58: warning: format '%d' expects argument of type 'int', but argument 4 has type 'long unsigned int' [-Wformat=] printf("test LZ4_compress_HC_destSize(%d) error (%d < %d)\n", ~^ %ld
Signed-off-by: Yue Hu <[email protected]> --- tests/src/badlz4.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/src/badlz4.c b/tests/src/badlz4.c index f2f1f05..221b714 100644 --- a/tests/src/badlz4.c +++ b/tests/src/badlz4.c @@ -70,7 +70,7 @@ int test_LZ4_compress_HC_destSize(int inlen) LZ4_freeStreamHC(ctx); if (SrcSize <= sizeof(dst)) { printf("test LZ4_compress_HC_destSize(%d) error (%d < %d)\n", - inlen, SrcSize, sizeof(dst)); + inlen, SrcSize, (int)sizeof(dst)); return 1; } printf("test LZ4_compress_HC_destSize(%d) OK\n", inlen); -- 2.17.1
