iliaa Sun Aug 22 14:05:25 2004 EDT Modified files: /php-src/main/streams xp_socket.c Log: Using int when long should be used. http://cvs.php.net/diff.php/php-src/main/streams/xp_socket.c?r1=1.27&r2=1.28&ty=u Index: php-src/main/streams/xp_socket.c diff -u php-src/main/streams/xp_socket.c:1.27 php-src/main/streams/xp_socket.c:1.28 --- php-src/main/streams/xp_socket.c:1.27 Tue Aug 10 09:44:43 2004 +++ php-src/main/streams/xp_socket.c Sun Aug 22 14:05:24 2004 @@ -16,7 +16,7 @@ +----------------------------------------------------------------------+ */ -/* $Id: xp_socket.c,v 1.27 2004/08/10 13:44:43 wez Exp $ */ +/* $Id: xp_socket.c,v 1.28 2004/08/22 18:05:24 iliaa Exp $ */ #include "php.h" #include "ext/standard/file.h" @@ -93,7 +93,7 @@ } while (err == EINTR); } estr = php_socket_strerror(err, NULL, 0); - php_error_docref(NULL TSRMLS_CC, E_NOTICE, "send of %ld bytes failed with errno=%d %s", + php_error_docref(NULL TSRMLS_CC, E_NOTICE, "send of %ld bytes failed with errno=%ld %s", (long)count, err, estr); efree(estr); }
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php