summaryrefslogtreecommitdiff
path: root/libmemcachedutil
diff options
context:
space:
mode:
authorMonty Taylor <mordred@inaugust.com>2009-06-15 13:03:47 +0000
committerMonty Taylor <mordred@inaugust.com>2009-06-15 13:03:47 +0000
commit15b99ad0b4c2b71bdbeb58580914d442f95d75f0 (patch)
tree6a47a19d785684bc16caad117e00fe6ee52aa675 /libmemcachedutil
parent70d97bb16f0d295619e64d882b363a3a0b1b4e1c (diff)
downloadlibmemcached-15b99ad0b4c2b71bdbeb58580914d442f95d75f0.tar.gz
Fixed -Wconversion warnings.
Diffstat (limited to 'libmemcachedutil')
-rw-r--r--libmemcachedutil/memcached_pool.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libmemcachedutil/memcached_pool.c b/libmemcachedutil/memcached_pool.c
index 7a4aa073..a1fc8c30 100644
--- a/libmemcachedutil/memcached_pool.c
+++ b/libmemcachedutil/memcached_pool.c
@@ -9,8 +9,8 @@ struct memcached_pool_st
memcached_st *master;
memcached_st **mmc;
int firstfree;
- int size;
- int current_size;
+ uint32_t size;
+ uint32_t current_size;
};
static memcached_return mutex_enter(pthread_mutex_t *mutex)