From 1e428098fbb082761b4fb4992e940d6eb19c1e7b Mon Sep 17 00:00:00 2001 From: Igor Sysoev Date: Wed, 31 Jan 2007 07:31:50 +0000 Subject: [PATCH] style fix --- src/event/ngx_event.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/event/ngx_event.c b/src/event/ngx_event.c index 563186e3e..91efde009 100644 --- a/src/event/ngx_event.c +++ b/src/event/ngx_event.c @@ -845,7 +845,8 @@ ngx_send_lowat(ngx_connection_t *c, size_t lowat) sndlowat = (int) lowat; if (setsockopt(c->fd, SOL_SOCKET, SO_SNDLOWAT, - (const void *) &sndlowat, sizeof(int)) == -1) + (const void *) &sndlowat, sizeof(int)) + == -1) { ngx_connection_error(c, ngx_socket_errno, "setsockopt(SO_SNDLOWAT) failed");