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:26:09 +0200
commit23acae6e1c801b58a4d065fd3d4f35339d6221bf (patch)
treefe47ed8ae9372e4f4e88597a3b773200ab5d04ae
parente3773b0a0eb62a6bdef735ac9121577a405e07ab (diff)
downloadredis-23acae6e1c801b58a4d065fd3d4f35339d6221bf.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;
}