]> granicus.if.org Git - php/commitdiff
Fix return type here too
authorWez Furlong <wez@php.net>
Fri, 21 May 2004 15:33:18 +0000 (15:33 +0000)
committerWez Furlong <wez@php.net>
Fri, 21 May 2004 15:33:18 +0000 (15:33 +0000)
ext/pdo_odbc/odbc_driver.c

index d6d42e7a26cfd2f6f297fe461e1a9297eecf334d..3638e5e801550f14e8cc53f1bd75f05beddba3a3 100755 (executable)
@@ -94,7 +94,7 @@ static int odbc_handle_preparer(pdo_dbh_t *dbh, const char *sql, long sql_len, p
        return 1;
 }
 
-static int odbc_handle_doer(pdo_dbh_t *dbh, const char *sql, long sql_len TSRMLS_DC)
+static long odbc_handle_doer(pdo_dbh_t *dbh, const char *sql, long sql_len TSRMLS_DC)
 {
        pdo_odbc_db_handle *H = (pdo_odbc_db_handle *)dbh->driver_data;