X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=lib%2Fmemcached_stats.c;h=a1ef99f3a945b374bdf7b5ad1d3bbc05e7da4a26;hb=5ed23cb1d7aaa03f05b58dfeabeee72f5aff91c5;hp=56ec80df08a55a1901c39fc6ba2a7fad769a9745;hpb=4792e6fd1af5001670384301816fba0665dfa693;p=awesomized%2Flibmemcached diff --git a/lib/memcached_stats.c b/lib/memcached_stats.c index 56ec80df..a1ef99f3 100644 --- a/lib/memcached_stats.c +++ b/lib/memcached_stats.c @@ -192,7 +192,7 @@ char *memcached_stat_get_value(memcached_st *ptr, memcached_stat_st *stat, else if (!memcmp("bytes_written", key, strlen("bytes_written"))) length= snprintf(buffer, SMALL_STRING_LEN,"%llu", (unsigned long long)stat->bytes_written); else if (!memcmp("limit_maxbytes", key, strlen("limit_maxbytes"))) - length= snprintf(buffer, SMALL_STRING_LEN,"%u", stat->limit_maxbytes); + length= snprintf(buffer, SMALL_STRING_LEN,"%llu", stat->limit_maxbytes); else if (!memcmp("threads", key, strlen("threads"))) length= snprintf(buffer, SMALL_STRING_LEN,"%u", stat->threads); else