diff options
author | Andrey Hristov <andrey@php.net> | 2009-11-26 11:10:47 +0000 |
---|---|---|
committer | Andrey Hristov <andrey@php.net> | 2009-11-26 11:10:47 +0000 |
commit | 0c6fa49fffb4d1578c161b941b6e3f816462b20c (patch) | |
tree | 5a01e211ebb21a1177dd5f650afbdcbb0a218c6c /ext/mysqlnd/mysqlnd_structs.h | |
parent | 4e7b8284b74ca91c148bc9e2a0ee32144c3eae7a (diff) | |
download | php-git-0c6fa49fffb4d1578c161b941b6e3f816462b20c.tar.gz |
fix debug windows build as well as remove a compilation warning
(a header not included)
Diffstat (limited to 'ext/mysqlnd/mysqlnd_structs.h')
-rw-r--r-- | ext/mysqlnd/mysqlnd_structs.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/mysqlnd/mysqlnd_structs.h b/ext/mysqlnd/mysqlnd_structs.h index 0763e0148d..f4485f1d1e 100644 --- a/ext/mysqlnd/mysqlnd_structs.h +++ b/ext/mysqlnd/mysqlnd_structs.h @@ -225,7 +225,7 @@ typedef struct st_mysqlnd_read_buffer { zend_bool (*is_empty)(struct st_mysqlnd_read_buffer *); void (*read)(struct st_mysqlnd_read_buffer *, size_t count, zend_uchar * dest); size_t (*bytes_left)(struct st_mysqlnd_read_buffer *); - void (*free)(struct st_mysqlnd_read_buffer ** TSRMLS_DC); + void (*free_buffer)(struct st_mysqlnd_read_buffer ** TSRMLS_DC); } MYSQLND_READ_BUFFER; |