X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=docs%2Flibmemcached_examples.pod;h=31328b9ab3aea484b6c11d111947dffb47e79e3e;hb=75d0420d9b56c2d7626e8a91f752ad195c39d085;hp=510c920693ae331e3828b9d6e7d98fcf179aa928;hpb=f626f20a53bc94fd8a206b7c49af9d0ef9840f24;p=awesomized%2Flibmemcached diff --git a/docs/libmemcached_examples.pod b/docs/libmemcached_examples.pod old mode 100755 new mode 100644 index 510c9206..31328b9a --- a/docs/libmemcached_examples.pod +++ b/docs/libmemcached_examples.pod @@ -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;