X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=libmemcached%2Fanalyze.cc;h=03c7e85bd89fd5543d1363cc9706eefe498ecf8d;hb=de23af474c65e0082cd5d9e60fc4cdb10468a0d3;hp=7115d06f2eada95bf8f38433bc3b0280c7dabb57;hpb=31048f6090b7c82605d2bbf7653d9884a14fe45b;p=awesomized%2Flibmemcached 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);