Used the correct type for the AIO preload handler return value.
Valentin Bartenev
7 years ago
1 changed file(s) with
3 addition(s)
and
3 deletion(s)
.
Raw diff
Collapse all
Expand all
+3
-3
src/os/unix/ngx_freebsd_sendfile_chain.c
less
more
265
265
c->busy_count = 0;
266
266
}
267
267
268
rc = aio->preload_handler(file);
269
270
if (rc > 0) {
268
n = aio->preload_handler(file);
269
270
if (n > 0) {
271
271
send = prev_send + sent;
272
272
continue;
273
273
}