diff options
Diffstat (limited to 'src/core/ngx_log.c')
-rw-r--r-- | src/core/ngx_log.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/ngx_log.c b/src/core/ngx_log.c index 278258262..efc62f93c 100644 --- a/src/core/ngx_log.c +++ b/src/core/ngx_log.c @@ -179,7 +179,7 @@ ngx_log_write(ngx_log_t *log, u_char *errstr, size_t len) errstr[len++] = LF; - write(log->file->fd, errstr, len); + (void) write(log->file->fd, errstr, len); #endif } |