abies Sat Sep 13 15:43:40 2003 EDT Modified files: /php-src/main/streams plain_wrapper.c Log: Pointer size fix Index: php-src/main/streams/plain_wrapper.c diff -u php-src/main/streams/plain_wrapper.c:1.21 php-src/main/streams/plain_wrapper.c:1.22 --- php-src/main/streams/plain_wrapper.c:1.21 Tue Aug 26 21:10:10 2003 +++ php-src/main/streams/plain_wrapper.c Sat Sep 13 15:43:39 2003 @@ -16,7 +16,7 @@ +----------------------------------------------------------------------+ */ -/* $Id: plain_wrapper.c,v 1.21 2003/08/27 01:10:10 iliaa Exp $ */ +/* $Id: plain_wrapper.c,v 1.22 2003/09/13 19:43:39 abies Exp $ */ #include "php.h" #include "php_globals.h" @@ -629,7 +629,7 @@ return -1; } - if ((int) ptrparam == PHP_STREAM_LOCK_SUPPORTED) { + if ((long) ptrparam == PHP_STREAM_LOCK_SUPPORTED) { return 0; }
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php