code style: strip trailing whitespace

This commit is contained in:
Bert Belder 2013-12-20 19:38:37 -08:00
parent 7b16a3f508
commit 562d7a49ac
2 changed files with 2 additions and 2 deletions

View File

@ -439,7 +439,7 @@ static void on_tcp_child_process_read(uv_stream_t* tcp, ssize_t nread, uv_buf_t
return;
}
printf("error recving on tcp connection: %s\n",
printf("error recving on tcp connection: %s\n",
uv_strerror(uv_last_error(tcp->loop)));
abort();
}

View File

@ -59,7 +59,7 @@ TEST_IMPL(poll_close) {
uv_poll_init_socket(uv_default_loop(), &poll_handles[i], sockets[i]);
uv_poll_start(&poll_handles[i], UV_READABLE | UV_WRITABLE, NULL);
}
for (i = 0; i < NUM_SOCKETS; i++) {
uv_close((uv_handle_t*) &poll_handles[i], close_cb);
}