diff options
author | antirez <antirez@gmail.com> | 2013-06-26 15:19:06 +0200 |
---|---|---|
committer | antirez <antirez@gmail.com> | 2013-06-26 15:19:06 +0200 |
commit | 13585dd677ab3401a395858e86cd2dbc626a211b (patch) | |
tree | ce745d901a51b531320771c32f3aeaecdb9ae428 /src/redis.h | |
parent | bae60ede1d60687f1240258c9298d3515b24b091 (diff) | |
download | redis-13585dd677ab3401a395858e86cd2dbc626a211b.tar.gz |
function renamed: popcount_binary -> redisPopcount.
Diffstat (limited to 'src/redis.h')
-rw-r--r-- | src/redis.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/redis.h b/src/redis.h index ccf978128..78d97ca22 100644 --- a/src/redis.h +++ b/src/redis.h @@ -1029,7 +1029,7 @@ long long mstime(void); void getRandomHexChars(char *p, unsigned int len); uint64_t crc64(uint64_t crc, const unsigned char *s, uint64_t l); void exitFromChild(int retcode); -size_t popcount_binary(void *s, long count); +size_t redisPopcount(void *s, long count); void redisSetProcTitle(char *title); /* networking.c -- Networking and Client related operations */ |