diff options
author | foobar <sniper@php.net> | 2005-05-10 13:22:22 +0000 |
---|---|---|
committer | foobar <sniper@php.net> | 2005-05-10 13:22:22 +0000 |
commit | 84bdf9b0a0ad8b62768bc09fadff2f4ea9b90b31 (patch) | |
tree | d0005e19270605d7dad11fdd5ab5dcf44ff62925 /ext/odbc/php_odbc_includes.h | |
parent | f12b14078e48d4385e75c2bb63bd6a60d367eba0 (diff) | |
download | php-git-84bdf9b0a0ad8b62768bc09fadff2f4ea9b90b31.tar.gz |
MFB: - Fixed bugs #32800, #32830 (ext/odbc: Problems with 64bit systems)
Diffstat (limited to 'ext/odbc/php_odbc_includes.h')
-rw-r--r-- | ext/odbc/php_odbc_includes.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/odbc/php_odbc_includes.h b/ext/odbc/php_odbc_includes.h index 6bbd0ee957..d8a0976d39 100644 --- a/ext/odbc/php_odbc_includes.h +++ b/ext/odbc/php_odbc_includes.h @@ -230,7 +230,7 @@ typedef struct odbc_connection { typedef struct odbc_result_value { char name[32]; char *value; - long int vallen; + SDWORD vallen; SDWORD coltype; } odbc_result_value; |