From b3f23f7fb7b00592af90f8b2d3c041bf0321dc52 Mon Sep 17 00:00:00 2001 From: Mark Adler Date: Sat, 29 Jul 2023 23:58:11 -0700 Subject: Match sign of printf directive to sign of argument in testzlib. --- contrib/testzlib/testzlib.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/testzlib/testzlib.c b/contrib/testzlib/testzlib.c index 5f659de..b3c0014 100644 --- a/contrib/testzlib/testzlib.c +++ b/contrib/testzlib/testzlib.c @@ -169,7 +169,7 @@ int main(int argc, char *argv[]) printf("error reading %s\n",argv[1]); return 1; } - else printf("file %s read, %u bytes\n",argv[1],lFileSize); + else printf("file %s read, %ld bytes\n",argv[1],lFileSize); if (argc>=3) BlockSizeCompress=atol(argv[2]); -- cgit v1.2.3-55-g6feb