diff options
author | Ilia Alshanetsky <iliaa@php.net> | 2004-08-22 18:05:24 +0000 |
---|---|---|
committer | Ilia Alshanetsky <iliaa@php.net> | 2004-08-22 18:05:24 +0000 |
commit | c84bd49fb56eb5c847e814568c11be19e13638e0 (patch) | |
tree | 5025beb6b969efae465c23c2199b6c495c6ae88e | |
parent | d6dd2c26fa8093ba3e1ef8bd90d12af581fe0882 (diff) | |
download | php-git-c84bd49fb56eb5c847e814568c11be19e13638e0.tar.gz |
Using int when long should be used.
-rw-r--r-- | main/streams/xp_socket.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/main/streams/xp_socket.c b/main/streams/xp_socket.c index a16cbe0125..aa143f4ab2 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); } |