Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpredis/phpredis.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEmmanuel Merali <emmanuel@mobli.com>2011-12-08 15:42:54 +0400
committerEmmanuel Merali <emmanuel@mobli.com>2011-12-08 15:42:54 +0400
commitf0a2dc0ec3ca50f83fee1f5b8ead0b2127df8ea4 (patch)
treed174640b8ac6c7b5c0e69f66a11d589c62cfc093 /redis_array.h
parentb408f7aa0676237de81abf32724dacdc6d42d18a (diff)
Renamed crc32 to rcrc32
The function crc32 was not being called so I renamed it to make sure that it's being called
Diffstat (limited to 'redis_array.h')
-rw-r--r--redis_array.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/redis_array.h b/redis_array.h
index d34b710b..b328b18e 100644
--- a/redis_array.h
+++ b/redis_array.h
@@ -41,7 +41,7 @@ typedef struct RedisArray_ {
struct RedisArray_ *prev;
} RedisArray;
-uint32_t crc32(const char *s, size_t sz);
+uint32_t rcrc32(const char *s, size_t sz);
#endif