summaryrefslogtreecommitdiff
path: root/ext/oci8/php_oci8_int.h
diff options
context:
space:
mode:
authorAntony Dovgal <tony2001@php.net>2006-11-10 20:13:36 +0000
committerAntony Dovgal <tony2001@php.net>2006-11-10 20:13:36 +0000
commit7563d4f5736e8aa6959dee1a6f50feb803dc5230 (patch)
treed21ab515896a3eab8cf654f61e6e1c4dfe4ad1c0 /ext/oci8/php_oci8_int.h
parentd98a8aa5898117f1ada3deb99b91b837f8707a38 (diff)
downloadphp-git-7563d4f5736e8aa6959dee1a6f50feb803dc5230.tar.gz
fix possible issue with negative values in oci_set_prefetch
(reported by Chris Jones)
Diffstat (limited to 'ext/oci8/php_oci8_int.h')
-rw-r--r--ext/oci8/php_oci8_int.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/oci8/php_oci8_int.h b/ext/oci8/php_oci8_int.h
index 22d7f8c37a..c87e20d38b 100644
--- a/ext/oci8/php_oci8_int.h
+++ b/ext/oci8/php_oci8_int.h
@@ -373,7 +373,7 @@ int php_oci_collection_append_string(php_oci_collection *, char *, int TSRMLS_DC
/* statement related prototypes {{{ */
php_oci_statement * php_oci_statement_create (php_oci_connection *, char *, int TSRMLS_DC);
-int php_oci_statement_set_prefetch (php_oci_statement *, ub4 TSRMLS_DC);
+int php_oci_statement_set_prefetch (php_oci_statement *, long TSRMLS_DC);
int php_oci_statement_fetch (php_oci_statement *, ub4 TSRMLS_DC);
php_oci_out_column * php_oci_statement_get_column (php_oci_statement *, long, char*, int TSRMLS_DC);
int php_oci_statement_execute (php_oci_statement *, ub4 TSRMLS_DC);