Skip to content

Commit 3529243

Browse files
remicolletsodabrew
authored andcommitted
fix build warning (#417)
1 parent 02e1e2f commit 3529243

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

php_memcached.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -2752,7 +2752,7 @@ memcached_return s_stat_execute_cb (php_memcached_instance_st instance, const ch
27522752
server_values = zend_hash_add(Z_ARRVAL_P(return_value), server_key, &zv);
27532753
}
27542754

2755-
spprintf (&buffer, 0, "%.*s", value_length, value);
2755+
spprintf (&buffer, 0, "%.*s", (int)value_length, value);
27562756

27572757
/* Check type */
27582758
if (s_long_value (buffer, &long_val)) {

0 commit comments

Comments
 (0)