From c163534ebc480c4d0bd69459b049e8f32fad9aa7 Mon Sep 17 00:00:00 2001 From: Guenter Knauf Date: Tue, 30 Nov 2010 19:48:06 +0000 Subject: [PATCH] Fixed return type to silent compiler warning. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1040733 13f79535-47bb-0310-9956-ffa450edef68 --- support/htcacheclean.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/support/htcacheclean.c b/support/htcacheclean.c index 311dbcd05d..92984333a9 100644 --- a/support/htcacheclean.c +++ b/support/htcacheclean.c @@ -255,7 +255,7 @@ static void printstats(char *path, struct stats *s) */ static apr_size_t round_up(apr_size_t val, apr_off_t round) { if (round > 1) { - return ((val + round - 1) / round) * round; + return (apr_size_t)(((val + round - 1) / round) * round); } return val; } -- 2.50.1