Cleaned up some warnings.
authorMonty Taylor <mordred@inaugust.com>
Tue, 7 Jul 2009 21:57:24 +0000 (14:57 -0700)
committerMonty Taylor <mordred@inaugust.com>
Tue, 7 Jul 2009 21:57:24 +0000 (14:57 -0700)
libmemcached/memcached.hh
libmemcached/memcached_dump.c
tests/atomsmasher.c
tests/plus.cpp

index 01b95f6b66bbd4758abb45f84bbdf0ff3e9ad29f..2f2d519e094a52493803400f11894614173ea861 100644 (file)
@@ -142,20 +142,20 @@ public:
                                    value, value_length, 0, 0);
   }
   memcached_return  cas(const char *key, const char *value, 
-                        size_t value_length, uint64_t cas)
+                        size_t value_length, uint64_t cas_arg)
   {
     return memcached_cas(&memc, key, strlen(key),
-                    value, value_length, 0, 0, cas);
+                    value, value_length, 0, 0, cas_arg);
   }
   memcached_return  cas_by_key(const char *master_key, const char *key, 
                                const char *value, size_t value_length, 
-                               uint64_t cas)
+                               uint64_t cas_arg)
   {
     return memcached_cas_by_key(&memc,
                                 master_key, strlen(master_key),
                                 key, strlen(key),
                                 value, value_length,
-                                0, 0, cas);
+                                0, 0, cas_arg);
   }
   // using 'remove' vs. 'delete' since 'delete' is a keyword 
   memcached_return remove(const char *key)
index 4899df56feafbea3eae51209d0c97b69f02a0cc3..88fec3a8d1daeb19cc5e4f097cc4cb428f229f5f 100644 (file)
@@ -9,7 +9,7 @@
 #include "common.h"
 static memcached_return ascii_dump(memcached_st *ptr, memcached_dump_func *callback, void *context, uint32_t number_of_callbacks)
 {
-  memcached_return rc;
+  memcached_return rc= 0;
   char buffer[MEMCACHED_DEFAULT_COMMAND_SIZE];
   size_t send_length;
   uint32_t server_key;
index 65a31dd4404f09344fcb999ada6e8b0f11c9eea1..eee08d6b724da3a4616e10e362b7a024f9e0d15e 100644 (file)
@@ -173,7 +173,7 @@ static test_return add_test(memcached_st *memc)
 
   /* Too many broken OS'es have broken loopback in async, so we can't be sure of the result */
   if (setting_value)
-    assert(rc == MEMCACHED_NOTSTORED || MEMCACHED_STORED);
+    assert(rc == MEMCACHED_NOTSTORED || rc == MEMCACHED_STORED);
   else
     assert(rc == MEMCACHED_NOTSTORED);
 
index 4a3789b93a741c427b4b541f79c1f1314b3fb197..d3674d6caf8ba53d5186094aaaa010e43eaf108d 100644 (file)
@@ -53,8 +53,8 @@ uint8_t increment_test(memcached_st *memc)
   mcach.set(key, inc_value, strlen(inc_value));
   ret_value= mcach.get(key, &value_length);
   printf("\nretvalue %s\n",ret_value);
-  int_inc_value= atoi(inc_value);
-  int_ret_value= atoi(ret_value);
+  int_inc_value= uint64_t(atol(inc_value));
+  int_ret_value= uint64_t(atol(ret_value));
   assert(int_ret_value == int_inc_value); 
 
   rc= mcach.increment(key, 1, &int_ret_value);