Fix for bad location of include directory
[awesomized/libmemcached] / lib / memcached.c
index 5d89e721faf27b5d49e2c4c3a82dba9738c32000..31c12ab3158bc52af7665376171816157f27e3c5 100644 (file)
@@ -60,7 +60,6 @@ memcached_st *memcached_clone(memcached_st *clone, memcached_st *ptr)
   memcached_return rc= MEMCACHED_SUCCESS;
   memcached_st *new_clone;
 
-  WATCHPOINT;
   if (ptr == NULL)
     return memcached_create(clone);
 
@@ -70,7 +69,6 @@ memcached_st *memcached_clone(memcached_st *clone, memcached_st *ptr)
     return NULL;
   }
   
-  WATCHPOINT;
   new_clone= memcached_create(clone);
   
   if (new_clone == NULL)