diff options
Diffstat (limited to 'ext/odbc')
-rw-r--r-- | ext/odbc/birdstep.c | 2 | ||||
-rw-r--r-- | ext/odbc/php_odbc.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/ext/odbc/birdstep.c b/ext/odbc/birdstep.c index 6776c7a2c4..83b548fc7c 100644 --- a/ext/odbc/birdstep.c +++ b/ext/odbc/birdstep.c @@ -49,7 +49,7 @@ #include "ext/standard/info.h" #include "php_ini.h" -zend_function_entry birdstep_functions[] = { +const zend_function_entry birdstep_functions[] = { PHP_FE(birdstep_connect, NULL) PHP_FE(birdstep_close, NULL) PHP_FE(birdstep_exec, NULL) diff --git a/ext/odbc/php_odbc.c b/ext/odbc/php_odbc.c index 20a8a1f627..17a0a092c7 100644 --- a/ext/odbc/php_odbc.c +++ b/ext/odbc/php_odbc.c @@ -68,7 +68,7 @@ static int le_result, le_conn, le_pconn; /* {{{ odbc_functions[] */ -zend_function_entry odbc_functions[] = { +const zend_function_entry odbc_functions[] = { PHP_FE(odbc_autocommit, NULL) PHP_FE(odbc_binmode, NULL) PHP_FE(odbc_close, NULL) |