Skip to content

Commit 2b91d58

Browse files
OCD spacing FTW
1 parent 85e0b9e commit 2b91d58

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

cluster_library.c

+6-6
Original file line numberDiff line numberDiff line change
@@ -1678,7 +1678,7 @@ PHP_REDIS_API void cluster_sub_resp(INTERNAL_FUNCTION_PARAMETERS, redisCluster *
16781678
/* Multibulk response, {[pattern], type, channel, payload} */
16791679
while(1) {
16801680
/* Arguments */
1681-
zval *z_type, *z_chan, *z_pat=NULL, *z_data;
1681+
zval *z_type, *z_chan, *z_pat = NULL, *z_data;
16821682
int tab_idx=1, is_pmsg;
16831683

16841684
// Get the next subscribe response
@@ -2359,8 +2359,8 @@ int mbulk_resp_loop_zipstr(RedisSock *redis_sock, zval *z_result,
23592359
long long count, void *ctx TSRMLS_DC)
23602360
{
23612361
char *line, *key = NULL;
2362-
int line_len, key_len=0;
2363-
long long idx=0;
2362+
int line_len, key_len = 0;
2363+
long long idx = 0;
23642364

23652365
// Our count wil need to be divisible by 2
23662366
if(count % 2 != 0) {
@@ -2401,9 +2401,9 @@ int mbulk_resp_loop_zipstr(RedisSock *redis_sock, zval *z_result,
24012401
int mbulk_resp_loop_zipdbl(RedisSock *redis_sock, zval *z_result,
24022402
long long count, void *ctx TSRMLS_DC)
24032403
{
2404-
char *line, *key=NULL;
2405-
int line_len, key_len=0;
2406-
long long idx=0;
2404+
char *line, *key = NULL;
2405+
int line_len, key_len = 0;
2406+
long long idx = 0;
24072407

24082408
// Our context will need to be divisible by 2
24092409
if(count %2 != 0) {

0 commit comments

Comments
 (0)