Browse Source

Fix return type

PHP-5.0
Wez Furlong 22 years ago
parent
commit
a53edd047e
  1. 2
      ext/pdo_oci/oci_driver.c

2
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;

Loading…
Cancel
Save