Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nginx/nginx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/os/unix/ngx_socket.c')
-rw-r--r--src/os/unix/ngx_socket.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/os/unix/ngx_socket.c b/src/os/unix/ngx_socket.c
index c2fbc3bed..27ae48dc5 100644
--- a/src/os/unix/ngx_socket.c
+++ b/src/os/unix/ngx_socket.c
@@ -25,7 +25,7 @@
int
ngx_nonblocking(ngx_socket_t s)
{
- u_long nb;
+ int nb;
nb = 1;
@@ -36,7 +36,7 @@ ngx_nonblocking(ngx_socket_t s)
int
ngx_blocking(ngx_socket_t s)
{
- u_long nb;
+ int nb;
nb = 0;