From c84bd49fb56eb5c847e814568c11be19e13638e0 Mon Sep 17 00:00:00 2001 From: Ilia Alshanetsky Date: Sun, 22 Aug 2004 18:05:24 +0000 Subject: [PATCH] Using int when long should be used. --- main/streams/xp_socket.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main/streams/xp_socket.c b/main/streams/xp_socket.c index a16cbe0125a..aa143f4ab28 100644 --- a/main/streams/xp_socket.c +++ b/main/streams/xp_socket.c @@ -93,7 +93,7 @@ retry: } 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); }