Commit:    dc45cfe4018e22d524ced208b3ecba0674ab5b02
Author:    Anatol Belski <a...@php.net>         Tue, 17 Dec 2013 10:17:14 +0100
Parents:   b90cc170b6cb517dc376269e1ef45e12b49fb941
Branches:  str_size_and_int64

Link:       
http://git.php.net/?p=php-src.git;a=commitdiff;h=dc45cfe4018e22d524ced208b3ecba0674ab5b02

Log:
fix function signature

Changed paths:
  M  ext/pdo_odbc/odbc_stmt.c


Diff:
diff --git a/ext/pdo_odbc/odbc_stmt.c b/ext/pdo_odbc/odbc_stmt.c
index 81158ab3..845617d 100644
--- a/ext/pdo_odbc/odbc_stmt.c
+++ b/ext/pdo_odbc/odbc_stmt.c
@@ -613,7 +613,7 @@ static int odbc_stmt_describe(pdo_stmt_t *stmt, int colno 
TSRMLS_DC)
        return 1;
 }
 
-static int odbc_stmt_get_col(pdo_stmt_t *stmt, int colno, char **ptr, 
php_uint_t *len, int *caller_frees TSRMLS_DC)
+static int odbc_stmt_get_col(pdo_stmt_t *stmt, php_int_t colno, char **ptr, 
php_uint_t *len, int *caller_frees TSRMLS_DC)
 {
        pdo_odbc_stmt *S = (pdo_odbc_stmt*)stmt->driver_data;
        pdo_odbc_column *C = &S->cols[colno];


--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to