From 84bdf9b0a0ad8b62768bc09fadff2f4ea9b90b31 Mon Sep 17 00:00:00 2001 From: foobar Date: Tue, 10 May 2005 13:22:22 +0000 Subject: [PATCH] MFB: - Fixed bugs #32800, #32830 (ext/odbc: Problems with 64bit systems) --- ext/odbc/php_odbc_includes.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.50.1