Skip to content

Commit 09694ee

Browse files
committed
Compile error missing argument separator comma
1 parent 634e016 commit 09694ee

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

redis.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -424,7 +424,7 @@ PHPAPI int redis_connect(INTERNAL_FUNCTION_PARAMETERS, int persistent) {
424424
RedisSock *redis_sock = NULL;
425425

426426
if (zend_parse_method_parameters(ZEND_NUM_ARGS() TSRMLS_CC, getThis(), "Os|lds",
427-
&object, redis_ce, &host, &host_len, &port
427+
&object, redis_ce, &host, &host_len, &port,
428428
&timeout, &persistent_id, &persistent_id_len) == FAILURE) {
429429
return FAILURE;
430430
}

0 commit comments

Comments
 (0)