diff options
author | Andrey Hristov <andrey@php.net> | 2010-10-05 17:20:00 +0000 |
---|---|---|
committer | Andrey Hristov <andrey@php.net> | 2010-10-05 17:20:00 +0000 |
commit | 223832c501f5187b165cfb71a0d36504f315f2c6 (patch) | |
tree | 18cf0a354f0fbbb55ec7f41dca8d131d13d697c7 /ext/mysqlnd/mysqlnd_wireprotocol.h | |
parent | c7a09c682d81c60c81c2c503c25d64bebd62478d (diff) | |
download | php-git-223832c501f5187b165cfb71a0d36504f315f2c6.tar.gz |
rename parameter name - should not shadow the global symbol alloca
Diffstat (limited to 'ext/mysqlnd/mysqlnd_wireprotocol.h')
-rw-r--r-- | ext/mysqlnd/mysqlnd_wireprotocol.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/mysqlnd/mysqlnd_wireprotocol.h b/ext/mysqlnd/mysqlnd_wireprotocol.h index 2666ecc508..7333976865 100644 --- a/ext/mysqlnd/mysqlnd_wireprotocol.h +++ b/ext/mysqlnd/mysqlnd_wireprotocol.h @@ -53,7 +53,7 @@ typedef struct st_mysqlnd_packet_methods { size_t struct_size; enum_func_status (*read_from_net)(void *packet, MYSQLND *conn TSRMLS_DC); size_t (*write_to_net)(void *packet, MYSQLND *conn TSRMLS_DC); - void (*free_mem)(void *packet, zend_bool alloca TSRMLS_DC); + void (*free_mem)(void *packet, zend_bool stack_allocation TSRMLS_DC); } mysqlnd_packet_methods; |