Removed unneeded function

This commit is contained in:
Pieter Noordhuis
2010-09-02 14:31:25 +02:00
parent b70d355521
commit 4a7893ca9c
2 changed files with 0 additions and 5 deletions

View File

@ -200,10 +200,6 @@ void addReplyLongLong(redisClient *c, long long ll) {
_addReplyLongLong(c,ll,':');
}
void addReplyUlong(redisClient *c, unsigned long ul) {
_addReplyLongLong(c,(long long)ul,':');
}
void addReplyMultiBulkLen(redisClient *c, long length) {
_addReplyLongLong(c,length,'*');
}