[PATCH v2 2/2] erofs-utils: tests: fix build warning in test_LZ4_compress_HC_destSize

Yue Hu zbestahu at gmail.com
Fri Nov 24 16:06:03 AEDT 2023


From: Yue Hu <huyue2 at coolpad.com>

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 <huyue2 at coolpad.com>
---
 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



More information about the Linux-erofs mailing list