diff options
author | Andrey Hristov <andrey@php.net> | 2010-04-28 12:29:13 +0000 |
---|---|---|
committer | Andrey Hristov <andrey@php.net> | 2010-04-28 12:29:13 +0000 |
commit | 16d5d5966e79eeef67e29ce0c8a75cefeef5ef95 (patch) | |
tree | 950d73b87a0e055e4fb6add446b89c0b9b994355 /ext/mysqlnd/mysqlnd_wireprotocol.h | |
parent | 9fac561399144d4b9b1c8d7c29bbf82643f25d2d (diff) | |
download | php-git-16d5d5966e79eeef67e29ce0c8a75cefeef5ef95.tar.gz |
const-ify fields
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 f4f79af469..64dc5528a6 100644 --- a/ext/mysqlnd/mysqlnd_wireprotocol.h +++ b/ext/mysqlnd/mysqlnd_wireprotocol.h @@ -254,7 +254,7 @@ PHPAPI void php_mysqlnd_scramble(zend_uchar * const buffer, const zend_uchar * c unsigned long php_mysqlnd_net_field_length(zend_uchar **packet); zend_uchar * php_mysqlnd_net_store_length(zend_uchar *packet, uint64_t length); -PHPAPI extern char * const mysqlnd_empty_string; +PHPAPI const extern char * const mysqlnd_empty_string; void php_mysqlnd_rowp_read_binary_protocol(MYSQLND_MEMORY_POOL_CHUNK * row_buffer, zval ** fields, |