Merge in additional documentation updates.
[awesomized/libmemcached] / libmemcached / result.h
index 59ce9b91b1baba26a8cf096786781b0b945f3078..701b89b764c828046cc76154447a08893a2e0eab 100644 (file)
@@ -17,12 +17,12 @@ struct memcached_result_st {
   time_t item_expiration;
   size_t key_length;
   uint64_t item_cas;
-  const memcached_st *root;
+  memcached_st *root;
   memcached_string_st value;
   char item_key[MEMCACHED_MAX_KEY];
   struct {
-    bool is_allocated MEMCACHED_BITFIELD;
-    bool is_initialized MEMCACHED_BITFIELD;
+    bool is_allocated:1;
+    bool is_initialized:1;
   } options;
   /* Add result callback function */
 };