From 61b869a79bcd2f228f6197332746d1d967d6f6d4 Mon Sep 17 00:00:00 2001 From: Rose <83477269+AtariDreams@users.noreply.github.com> Date: Thu, 20 Apr 2023 13:31:34 -0400 Subject: [PATCH] Cast to unsigned long instead of long for size_t size_t is unsigned, so let's not worry about signedness. --- cups/request.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cups/request.c b/cups/request.c index 6f71be73ab..66c803a04c 100644 --- a/cups/request.c +++ b/cups/request.c @@ -179,7 +179,7 @@ cupsDoIORequest(http_t *http, /* I - Connection to server or @code CUPS_HTTP else length = ippLength(request); - DEBUG_printf(("2cupsDoIORequest: Request length=%ld, total length=%ld", (long)ippLength(request), (long)length)); + DEBUG_printf(("2cupsDoIORequest: Request length=%lu, total length=%lu", (unsigned long)ippLength(request), (unsigned long)length)); /* * Clear any "Local" authentication data since it is probably stale... -- 2.47.2