test: fix -Wstrict-prototypes compiler warnings
PR-URL: https://github.com/libuv/libuv/pull/1354 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com> Reviewed-By: Santiago Gimeno <santiago.gimeno@gmail.com>
This commit is contained in:
parent
ff360e7f14
commit
6c2fe3d946
@ -335,7 +335,7 @@ static void read_cb(uv_stream_t* handle,
|
||||
} while (uv_pipe_pending_count(pipe) > 0);
|
||||
}
|
||||
|
||||
static void send_recv_start() {
|
||||
static void send_recv_start(void) {
|
||||
int r;
|
||||
ASSERT(1 == uv_is_readable((uv_stream_t*)&ctx2.channel));
|
||||
ASSERT(1 == uv_is_writable((uv_stream_t*)&ctx2.channel));
|
||||
|
||||
@ -41,7 +41,7 @@ static void set_title(const char* title) {
|
||||
}
|
||||
|
||||
|
||||
static void uv_get_process_title_edge_cases() {
|
||||
static void uv_get_process_title_edge_cases(void) {
|
||||
char buffer[512];
|
||||
int r;
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user