From: Brian Aker Date: Sun, 9 Sep 2012 02:01:35 +0000 (-0400) Subject: Fix OSX based compile issue. X-Git-Tag: 1.0.11~1^2~7 X-Git-Url: https://git.m6w6.name/?p=awesomized%2Flibmemcached;a=commitdiff_plain;h=de23af474c65e0082cd5d9e60fc4cdb10468a0d3 Fix OSX based compile issue. --- 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);