Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
ruanhaishen
redis
Commits
4a7893ca
Commit
4a7893ca
authored
Sep 02, 2010
by
Pieter Noordhuis
Browse files
Removed unneeded function
parent
b70d3555
Changes
2
Show whitespace changes
Inline
Side-by-side
src/networking.c
View file @
4a7893ca
...
@@ -200,10 +200,6 @@ void addReplyLongLong(redisClient *c, long long ll) {
...
@@ -200,10 +200,6 @@ void addReplyLongLong(redisClient *c, long long ll) {
_addReplyLongLong
(
c
,
ll
,
':'
);
_addReplyLongLong
(
c
,
ll
,
':'
);
}
}
void
addReplyUlong
(
redisClient
*
c
,
unsigned
long
ul
)
{
_addReplyLongLong
(
c
,(
long
long
)
ul
,
':'
);
}
void
addReplyMultiBulkLen
(
redisClient
*
c
,
long
length
)
{
void
addReplyMultiBulkLen
(
redisClient
*
c
,
long
length
)
{
_addReplyLongLong
(
c
,
length
,
'*'
);
_addReplyLongLong
(
c
,
length
,
'*'
);
}
}
...
...
src/redis.h
View file @
4a7893ca
...
@@ -616,7 +616,6 @@ void addReply(redisClient *c, robj *obj);
...
@@ -616,7 +616,6 @@ void addReply(redisClient *c, robj *obj);
void
addReplySds
(
redisClient
*
c
,
sds
s
);
void
addReplySds
(
redisClient
*
c
,
sds
s
);
void
addReplyDouble
(
redisClient
*
c
,
double
d
);
void
addReplyDouble
(
redisClient
*
c
,
double
d
);
void
addReplyLongLong
(
redisClient
*
c
,
long
long
ll
);
void
addReplyLongLong
(
redisClient
*
c
,
long
long
ll
);
void
addReplyUlong
(
redisClient
*
c
,
unsigned
long
ul
);
void
addReplyMultiBulkLen
(
redisClient
*
c
,
long
length
);
void
addReplyMultiBulkLen
(
redisClient
*
c
,
long
length
);
void
*
dupClientReplyValue
(
void
*
o
);
void
*
dupClientReplyValue
(
void
*
o
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment