summaryrefslogtreecommitdiff
path: root/src/networking.c
diff options
context:
space:
mode:
authorantirez <antirez@gmail.com>2014-06-26 18:48:40 +0200
committerantirez <antirez@gmail.com>2014-06-26 18:48:40 +0200
commit95b1979c321eb6353f75df892ab8be68cf8f9a77 (patch)
tree0e9aab40f1c669572ea2830a080b2e6b0e350a4b /src/networking.c
parent97f1fc65cf0331a367c2075c3adf09964dda2556 (diff)
downloadredis-95b1979c321eb6353f75df892ab8be68cf8f9a77.tar.gz
No more trailing spaces in Redis source code.
Diffstat (limited to 'src/networking.c')
-rw-r--r--src/networking.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/networking.c b/src/networking.c
index 0c2760504..8bc6389a4 100644
--- a/src/networking.c
+++ b/src/networking.c
@@ -1495,7 +1495,7 @@ void rewriteClientCommandVector(redisClient *c, int argc, ...) {
va_start(ap,argc);
for (j = 0; j < argc; j++) {
robj *a;
-
+
a = va_arg(ap, robj*);
argv[j] = a;
incrRefCount(a);
@@ -1517,7 +1517,7 @@ void rewriteClientCommandVector(redisClient *c, int argc, ...) {
* The new val ref count is incremented, and the old decremented. */
void rewriteClientCommandArgument(redisClient *c, int i, robj *newval) {
robj *oldval;
-
+
redisAssertWithInfo(c,NULL,i < c->argc);
oldval = c->argv[i];
c->argv[i] = newval;