Skip to content

Commit 0280bee

Browse files
author
Nicolas Van Eenaeme
committed
changed int to long for store_retry_count
1 parent 761fc79 commit 0280bee

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

php_memcached.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ typedef struct {
203203
#if HAVE_MEMCACHED_SASL
204204
zend_bool has_sasl_data;
205205
#endif
206-
int store_retry_count;
206+
long store_retry_count;
207207
} *obj;
208208

209209
zend_bool is_persistent;

php_memcached.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ ZEND_BEGIN_MODULE_GLOBALS(php_memcached)
9393
#if HAVE_MEMCACHED_SASL
9494
bool use_sasl;
9595
#endif
96-
int store_retry_count;
96+
long store_retry_count;
9797
ZEND_END_MODULE_GLOBALS(php_memcached)
9898

9999
PHP_MEMCACHED_API zend_class_entry *php_memc_get_ce(void);

0 commit comments

Comments
 (0)