summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRaymond Myers <ray.myers@vungle.com>2014-04-01 14:54:31 -0700
committerantirez <antirez@gmail.com>2014-04-16 15:09:45 +0200
commit21c93724540cf2a90d79905b3980cc3950983cd5 (patch)
treee23708163504b2b41233f70032624f14e37af3ae
parentf307a5104956c7d6bcac778deb12466db041b8dc (diff)
downloadredis-21c93724540cf2a90d79905b3980cc3950983cd5.tar.gz
Change HLL* to PF* in error messages
-rw-r--r--src/hyperloglog.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/hyperloglog.c b/src/hyperloglog.c
index b4a607d57..e7a2b4d72 100644
--- a/src/hyperloglog.c
+++ b/src/hyperloglog.c
@@ -458,7 +458,7 @@ void pfaddCommand(redisClient *c) {
* exactly. */
if (stringObjectLen(o) != REDIS_HLL_SIZE) {
addReplyErrorFormat(c,
- "HLLADD target key must contain a %d bytes string.",
+ "PFADD target key must contain a %d bytes string.",
REDIS_HLL_SIZE);
return;
}
@@ -502,7 +502,7 @@ void pfcountCommand(redisClient *c) {
* exactly. */
if (stringObjectLen(o) != REDIS_HLL_SIZE) {
addReplyErrorFormat(c,
- "HLLCOUNT target key must contain a %d bytes string.",
+ "PFCOUNT target key must contain a %d bytes string.",
REDIS_HLL_SIZE);
return;
}
@@ -562,7 +562,7 @@ void pfmergeCommand(redisClient *c) {
if (stringObjectLen(o) != REDIS_HLL_SIZE) {
addReplyErrorFormat(c,
- "HLLADD target key must contain a %d bytes string.",
+ "PFADD target key must contain a %d bytes string.",
REDIS_HLL_SIZE);
return;
}