diff options
author | Felipe Pena <felipe@php.net> | 2011-06-27 01:36:39 +0000 |
---|---|---|
committer | Felipe Pena <felipe@php.net> | 2011-06-27 01:36:39 +0000 |
commit | 92ef080a2e096fdbf57c7777c39e90fbdb850e50 (patch) | |
tree | 11870a62bfbae42cb8184fe8205bdacc47938e93 /ext/pdo_odbc/php_pdo_odbc_int.h | |
parent | f5b05ce1629aef23289eb69b596a23a45d23e9a5 (diff) | |
download | php-git-92ef080a2e096fdbf57c7777c39e90fbdb850e50.tar.gz |
- Fixed data type usage in 64bit
Reported by: Leonildo Costa
Diffstat (limited to 'ext/pdo_odbc/php_pdo_odbc_int.h')
-rwxr-xr-x | ext/pdo_odbc/php_pdo_odbc_int.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/pdo_odbc/php_pdo_odbc_int.h b/ext/pdo_odbc/php_pdo_odbc_int.h index 2472e770d7..4c216ffafa 100755 --- a/ext/pdo_odbc/php_pdo_odbc_int.h +++ b/ext/pdo_odbc/php_pdo_odbc_int.h @@ -136,7 +136,7 @@ typedef struct { typedef struct { char *data; unsigned long datalen; - long fetched_len; + SQLLEN fetched_len; SWORD coltype; char colname[128]; unsigned is_long; |