From 08db6c176d2a472ebd95b7979a2be1f6cbf37db3 Mon Sep 17 00:00:00 2001 From: "William A. Rowe Jr" Date: Wed, 3 Apr 2002 05:28:04 +0000 Subject: [PATCH] A very safe cast for any ^2 based cpu. Are we expecting any trinary CPUs any time soon for Apache support? Cleans up an emit on 32 bit builds. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@94409 13f79535-47bb-0310-9956-ffa450edef68 --- modules/experimental/cache_util.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/experimental/cache_util.c b/modules/experimental/cache_util.c index 18354557a8..81fe91b560 100644 --- a/modules/experimental/cache_util.c +++ b/modules/experimental/cache_util.c @@ -243,7 +243,7 @@ CACHE_DECLARE(void) ap_cache_msec2hex(apr_time_t j, char *y) int i, ch; for (i = (sizeof(j) * 2)-1; i >= 0; i--) { - ch = j & 0xF; + ch = (int)j & 0xF; j >>= 4; if (ch >= 10) y[i] = ch + ('A' - 10); -- 2.50.1