From 44585eeaf85693a5e1e4097dd17c5c15058ca733 Mon Sep 17 00:00:00 2001 From: YAMAMOTO Takashi Date: Wed, 3 Jun 2020 17:30:58 +0900 Subject: [PATCH] mkdeps: Use %zu/%zd printf format instead of casts --- tools/mkdeps.c | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/tools/mkdeps.c b/tools/mkdeps.c index 2adf3b71fcd..867c0bec855 100644 --- a/tools/mkdeps.c +++ b/tools/mkdeps.c @@ -352,8 +352,7 @@ static const char *do_shquote(const char *argument) { fprintf(stderr, "ERROR: Truncated during shquote string is too long" - "[%lu/%zu]\n", (unsigned long)strlen(argument), - sizeof(g_shquote)); + "[%zu/%zu]\n", strlen(argument), sizeof(g_shquote)); exit(EXIT_FAILURE); } @@ -590,7 +589,7 @@ static const char *do_expand(const char *argument) { fprintf(stderr, "ERROR: Truncated during expansion string is too long" - "[%lu/%u]\n", (unsigned long)strlen(argument), MAX_EXPAND); + "[%zu/%u]\n", strlen(argument), MAX_EXPAND); exit(EXIT_FAILURE); } @@ -662,8 +661,7 @@ static const char *convert_path(const char *path) NULL, 0); if (size > (MAX_PATH - 3)) { - fprintf(stderr, "# ERROR: POSIX path too long: %lu\n", - (unsigned long)size); + fprintf(stderr, "# ERROR: POSIX path too long: %zd\n", size); exit(EXIT_FAILURE); }