iliaa Sun Aug 22 14:05:27 2004 EDT
Modified files: (Branch: PHP_5_0)
/php-src/main/streams xp_socket.c
Log:
MFH: Using int when long should be used.
http://cvs.php.net/diff.php/php-src/main/streams/xp_socket.c?r1=1.23.2.3&r2=1.23.2.4&ty=u
Index: php-src/main/streams/xp_socket.c
diff -u php-src/main/streams/xp_socket.c:1.23.2.3
php-src/main/streams/xp_socket.c:1.23.2.4
--- php-src/main/streams/xp_socket.c:1.23.2.3 Tue Aug 10 09:45:58 2004
+++ php-src/main/streams/xp_socket.c Sun Aug 22 14:05:27 2004
@@ -16,7 +16,7 @@
+----------------------------------------------------------------------+
*/
-/* $Id: xp_socket.c,v 1.23.2.3 2004/08/10 13:45:58 wez Exp $ */
+/* $Id: xp_socket.c,v 1.23.2.4 2004/08/22 18:05:27 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