summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorcyhone <cyhone@qq.com>2022-04-10 15:38:57 +0800
committerGitHub <noreply@github.com>2022-04-10 10:38:57 +0300
commit6cb5cbb28fea3f77f07e78effbbd0cf378c5b6bf (patch)
treed71646cfb7436629a2d907ccba24ee53b2103c73 /src
parentdd3b545d89468d81b29e6a1e72de7a4a38da80d1 (diff)
downloadredis-6cb5cbb28fea3f77f07e78effbbd0cf378c5b6bf.tar.gz
fix indent space (#10562)
Diffstat (limited to 'src')
-rw-r--r--src/networking.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/networking.c b/src/networking.c
index 767d871d8..9b41ea56d 100644
--- a/src/networking.c
+++ b/src/networking.c
@@ -2649,7 +2649,7 @@ void readQueryFromClient(connection *conn) {
/* There is more data in the client input buffer, continue parsing it
* and check if there is a full command to execute. */
- if (processInputBuffer(c) == C_ERR)
+ if (processInputBuffer(c) == C_ERR)
c = NULL;
done: