From a53edd047e98083fcb28fa7db2cecd5c4f8e1a5a Mon Sep 17 00:00:00 2001 From: Wez Furlong Date: Fri, 21 May 2004 15:29:09 +0000 Subject: [PATCH] Fix return type --- ext/pdo_oci/oci_driver.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/pdo_oci/oci_driver.c b/ext/pdo_oci/oci_driver.c index 5d9fdeb26d..0d93f58884 100755 --- a/ext/pdo_oci/oci_driver.c +++ b/ext/pdo_oci/oci_driver.c @@ -218,7 +218,7 @@ static int oci_handle_preparer(pdo_dbh_t *dbh, const char *sql, long sql_len, pd return 1; } -static int oci_handle_doer(pdo_dbh_t *dbh, const char *sql, long sql_len TSRMLS_DC) +static long oci_handle_doer(pdo_dbh_t *dbh, const char *sql, long sql_len TSRMLS_DC) { pdo_oci_db_handle *H = (pdo_oci_db_handle *)dbh->driver_data; OCIStmt *stmt; -- 2.50.1