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 | 82de444f9a08f191851d5f5e0a31feaf9f6103b0 (patch) | |
tree | 2094b6382e48dfcf789275114159b79612bf149c /ext/mysqlnd/mysqlnd_wireprotocol.h | |
parent | eb2908c3f7429f2d9d6cbde157cf296695bab9f6 (diff) | |
download | php-git-82de444f9a08f191851d5f5e0a31feaf9f6103b0.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; |