Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpredis/phpredis.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Grunder <michael.grunder@gmail.com>2021-02-25 21:03:53 +0300
committerGitHub <noreply@github.com>2021-02-25 21:03:53 +0300
commite61ee1da45e2c20d8d10c1802d47cfbea4c66b14 (patch)
tree093c9db771bd9ea08207ca3f20601ae36677eebb /sentinel_library.h
parent1f2a7ef6b5ea9c032e6075b2c21e0cf57bd11c3f (diff)
Normalize Redis callback prototypes and stop typecasting. (#1935)
Diffstat (limited to 'sentinel_library.h')
-rw-r--r--sentinel_library.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/sentinel_library.h b/sentinel_library.h
index 460ccfad..88d9a564 100644
--- a/sentinel_library.h
+++ b/sentinel_library.h
@@ -8,6 +8,6 @@ typedef redis_object redis_sentinel_object;
zend_object *create_sentinel_object(zend_class_entry *ce);
-PHP_REDIS_API void sentinel_mbulk_reply_zipped_assoc(INTERNAL_FUNCTION_PARAMETERS, RedisSock *redis_sock, zval *z_tab, void *ctx);
+PHP_REDIS_API int sentinel_mbulk_reply_zipped_assoc(INTERNAL_FUNCTION_PARAMETERS, RedisSock *redis_sock, zval *z_tab, void *ctx);
#endif /* REDIS_SENTINEL_LIBRARY_H */