Updated to latest pandora-build. Removed the .ver scripts to be consistent with other...
[m6w6/libmemcached] / docs / libmemcached_examples.pod
index 510c920693ae331e3828b9d6e7d98fcf179aa928..31328b9ab3aea484b6c11d111947dffb47e79e3e 100644 (file)
@@ -11,7 +11,7 @@ the library.
 =head2 Creating and Freeing structure
 
   memcached_st *memc;
-  memcached_return rc;
+  memcached_return_t rc;
 
   memc= memcached_create(NULL);
   ...do stuff...
@@ -74,7 +74,7 @@ It is best practice to always look at the return value of any operation.
 
 =head2 Fetching multiple values
 
-  memcached_return rc;
+  memcached_return_t rc;
   char *keys[]= {"fudge", "son", "food"};
   size_t key_length[]= {5, 3, 4};
   unsigned int x;