abies           Mon Feb 23 11:26:35 2004 EDT

  Modified files:              
    /php-src/ext/sqlite sqlite.c 
    /php-src/ext/standard       streamsfuncs.c 
  Log:
  64-bit fixes
  
  
http://cvs.php.net/diff.php/php-src/ext/sqlite/sqlite.c?r1=1.122&r2=1.123&ty=u
Index: php-src/ext/sqlite/sqlite.c
diff -u php-src/ext/sqlite/sqlite.c:1.122 php-src/ext/sqlite/sqlite.c:1.123
--- php-src/ext/sqlite/sqlite.c:1.122   Sun Feb 22 20:21:16 2004
+++ php-src/ext/sqlite/sqlite.c Mon Feb 23 11:26:34 2004
@@ -17,7 +17,7 @@
    |          Marcus Boerger <[EMAIL PROTECTED]>                              |
    +----------------------------------------------------------------------+
 
-   $Id: sqlite.c,v 1.122 2004/02/23 01:21:16 abies Exp $ 
+   $Id: sqlite.c,v 1.123 2004/02/23 16:26:34 abies Exp $ 
 */
 
 #ifdef HAVE_CONFIG_H
@@ -1054,7 +1054,7 @@
 {
        php_info_print_table_start();
        php_info_print_table_header(2, "SQLite support", "enabled");
-       php_info_print_table_row(2, "PECL Module version", PHP_SQLITE_MODULE_VERSION " 
$Id: sqlite.c,v 1.122 2004/02/23 01:21:16 abies Exp $");
+       php_info_print_table_row(2, "PECL Module version", PHP_SQLITE_MODULE_VERSION " 
$Id: sqlite.c,v 1.123 2004/02/23 16:26:34 abies Exp $");
        php_info_print_table_row(2, "SQLite Library", sqlite_libversion());
        php_info_print_table_row(2, "SQLite Encoding", sqlite_libencoding());
        php_info_print_table_end();
@@ -1823,7 +1823,7 @@
 PHP_FUNCTION(sqlite_fetch_array)
 {
        zval *zres;
-       int mode = PHPSQLITE_BOTH;
+       long mode = PHPSQLITE_BOTH;
        zend_bool decode_binary = 1;
        struct php_sqlite_result *res;
        zval *object = getThis();
http://cvs.php.net/diff.php/php-src/ext/standard/streamsfuncs.c?r1=1.32&r2=1.33&ty=u
Index: php-src/ext/standard/streamsfuncs.c
diff -u php-src/ext/standard/streamsfuncs.c:1.32 
php-src/ext/standard/streamsfuncs.c:1.33
--- php-src/ext/standard/streamsfuncs.c:1.32    Thu Jan  8 03:17:34 2004
+++ php-src/ext/standard/streamsfuncs.c Mon Feb 23 11:26:34 2004
@@ -17,7 +17,7 @@
   +----------------------------------------------------------------------+
 */
 
-/* $Id: streamsfuncs.c,v 1.32 2004/01/08 08:17:34 andi Exp $ */
+/* $Id: streamsfuncs.c,v 1.33 2004/02/23 16:26:34 abies Exp $ */
 
 #include "php.h"
 #include "php_globals.h"
@@ -954,7 +954,8 @@
        zval *zstream;
        php_stream *stream;
        char *filtername;
-       int filternamelen, read_write = 0;
+       int filternamelen;
+       long read_write = 0;
        zval *filterparams = NULL;
        php_stream_filter *filter;
 

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

Reply via email to