Skip to content

Commit

Permalink
Test runner: fix compiler warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
piscisaureus committed Mar 9, 2012
1 parent f285caf commit 5021670
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/run-tests.c
Original file line number Diff line number Diff line change
Expand Up @@ -129,8 +129,8 @@ static int ipc_helper(int listen_after_write) {

uv_pipe_open(&channel, 0);

ASSERT(uv_is_readable(&channel));
ASSERT(uv_is_writable(&channel));
ASSERT(uv_is_readable((uv_stream_t*) &channel));
ASSERT(uv_is_writable((uv_stream_t*) &channel));

r = uv_tcp_init(uv_default_loop(), &tcp_server);
ASSERT(r == 0);
Expand Down

0 comments on commit 5021670

Please sign in to comment.