summaryrefslogtreecommitdiff
path: root/ext/mysqli/mysqli_priv.h
diff options
context:
space:
mode:
authorAndrey Hristov <andrey@php.net>2011-08-02 13:41:20 +0000
committerAndrey Hristov <andrey@php.net>2011-08-02 13:41:20 +0000
commit4d31e1d143a7153b654ff2516f8c0ff0bb4d8117 (patch)
treed5d4a02e908d12ab0f52411b240ff2e76d283313 /ext/mysqli/mysqli_priv.h
parent6803a389284d8ae29d3d8e00d3e62ba8106362f1 (diff)
downloadphp-git-4d31e1d143a7153b654ff2516f8c0ff0bb4d8117.tar.gz
fix warnings due to change in zend_property_info (structure extended in the middle!!)
Diffstat (limited to 'ext/mysqli/mysqli_priv.h')
-rw-r--r--ext/mysqli/mysqli_priv.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/ext/mysqli/mysqli_priv.h b/ext/mysqli/mysqli_priv.h
index e6c8e28951..adafe55c14 100644
--- a/ext/mysqli/mysqli_priv.h
+++ b/ext/mysqli/mysqli_priv.h
@@ -52,11 +52,11 @@ extern const mysqli_property_entry mysqli_stmt_property_entries[];
extern const mysqli_property_entry mysqli_driver_property_entries[];
extern const mysqli_property_entry mysqli_warning_property_entries[];
-extern zend_property_info mysqli_link_property_info_entries[];
-extern zend_property_info mysqli_result_property_info_entries[];
-extern zend_property_info mysqli_stmt_property_info_entries[];
-extern zend_property_info mysqli_driver_property_info_entries[];
-extern zend_property_info mysqli_warning_property_info_entries[];
+extern const zend_property_info mysqli_link_property_info_entries[];
+extern const zend_property_info mysqli_result_property_info_entries[];
+extern const zend_property_info mysqli_stmt_property_info_entries[];
+extern const zend_property_info mysqli_driver_property_info_entries[];
+extern const zend_property_info mysqli_warning_property_info_entries[];
extern int php_le_pmysqli(void);
extern void php_mysqli_dtor_p_elements(void *data);