From de23af474c65e0082cd5d9e60fc4cdb10468a0d3 Mon Sep 17 00:00:00 2001 From: Brian Aker Date: Sat, 8 Sep 2012 22:01:35 -0400 Subject: [PATCH] Fix OSX based compile issue. --- libmemcached/analyze.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/libmemcached/analyze.cc b/libmemcached/analyze.cc index 7115d06f..03c7e85b 100644 --- a/libmemcached/analyze.cc +++ b/libmemcached/analyze.cc @@ -12,8 +12,8 @@ static void calc_largest_consumption(memcached_analysis_st *result, } static void calc_oldest_node(memcached_analysis_st *result, - const uint32_t server_num, - const uint32_t uptime) + const uint32_t server_num, + const uint32_t uptime) { if (result->longest_uptime < uptime) { @@ -96,7 +96,7 @@ memcached_analysis_st *memcached_analyze(memcached_st *memc, for (uint32_t x= 0; x < server_count; x++) { calc_largest_consumption(result, x, memc_stat[x].bytes); - calc_oldest_node(result, x, memc_stat[x].uptime); + calc_oldest_node(result, x, uint32_t(memc_stat[x].uptime)); calc_least_free_node(result, x, memc_stat[x].limit_maxbytes, memc_stat[x].bytes); -- 2.30.2