]> granicus.if.org Git - php/commitdiff
Fix return type
authorWez Furlong <wez@php.net>
Fri, 21 May 2004 15:29:09 +0000 (15:29 +0000)
committerWez Furlong <wez@php.net>
Fri, 21 May 2004 15:29:09 +0000 (15:29 +0000)
ext/pdo_oci/oci_driver.c

index 5d9fdeb26dc752ee50ca2771ba476ede5bbc763a..0d93f58884353a2a526d00424c1aeef74649b0ea 100755 (executable)
@@ -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;