Updating the get function in the C++ interface.
[awesomized/libmemcached] / libmemcached / murmur_hash.c
index c9e60f5bf6e32ec12e2b4ada421043361833c857..edb9e7772afe8191801185aff9f8ae393b3440da 100644 (file)
@@ -60,6 +60,7 @@ uint32_t murmur_hash(const char *key, size_t length)
   case 2: h ^= data[1] << 8;
   case 1: h ^= data[0];
           h *= m;
+  default: break;
   };
 
   /*