Skip to content

Commit d4d4ae7

Browse files
committed
Fix issue with tests
1 parent a5e4615 commit d4d4ae7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

php_memcached.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1795,7 +1795,7 @@ static void php_memc_incdec_impl(INTERNAL_FUNCTION_PARAMETERS, zend_bool by_key,
17951795
{
17961796
char *key, *server_key;
17971797
int key_len, server_key_len;
1798-
uint64_t offset = 1;
1798+
int64_t offset = 1;
17991799
uint64_t value, initial = 0;
18001800
time_t expiry = 0;
18011801
memcached_return status;

0 commit comments

Comments
 (0)