Skip to content

Commit

Permalink
Merge pull request #5 from willfitch/php7
Browse files Browse the repository at this point in the history
Fixed invalid int -> size_t in params
  • Loading branch information
szabolcsbalogh committed Feb 26, 2016
2 parents 81b1267 + 57cd6c8 commit 88750b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion memcache.c
Original file line number Diff line number Diff line change
Expand Up @@ -2471,7 +2471,7 @@ PHP_FUNCTION(memcache_get_extended_stats)
zval *mmc_object = getThis(), stats;

char *type = NULL;
int type_len = 0;
size_t type_len = 0;
zend_long slabid = 0, limit = MMC_DEFAULT_CACHEDUMP_LIMIT;

if (mmc_object == NULL) {
Expand Down

0 comments on commit 88750b4

Please sign in to comment.