summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEdin Kadribasic <edink@php.net>2002-04-25 17:18:31 +0000
committerEdin Kadribasic <edink@php.net>2002-04-25 17:18:31 +0000
commitf36bc79e87a337a42273354a479d1eb79b81abe6 (patch)
tree49418583cf978bd3e4bdc97f771321e6d89504b2
parente7630016822ad62f7d6c13d8070cb9e8d28b64dd (diff)
downloadphp-git-f36bc79e87a337a42273354a479d1eb79b81abe6.tar.gz
Fix the fix.
-rw-r--r--ext/oracle/oracle.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/oracle/oracle.c b/ext/oracle/oracle.c
index 71bc5cd524..a49f10d78c 100644
--- a/ext/oracle/oracle.c
+++ b/ext/oracle/oracle.c
@@ -113,7 +113,7 @@ PHP_RSHUTDOWN_FUNCTION(oracle);
PHP_MINFO_FUNCTION(oracle);
/* }}} */
-static unsigned char second_arg_force_ref[] = { 2, BYREF_NONE, BYREF_FORCE };
+static unsigned char second_args_force_ref[] = { 2, BYREF_NONE, BYREF_FORCE };
/* {{{ oracle_functions[]
*/
@@ -128,7 +128,7 @@ function_entry oracle_functions[] = {
PHP_FE(ora_errorcode, NULL)
PHP_FE(ora_exec, NULL)
PHP_FE(ora_fetch, NULL)
- PHP_FE(ora_fetch_into, second_arg_force_ref)
+ PHP_FE(ora_fetch_into, second_args_force_ref)
PHP_FE(ora_columntype, NULL)
PHP_FE(ora_columnname, NULL)
PHP_FE(ora_columnsize, NULL)