Skip to content
This repository has been archived by the owner on May 4, 2018. It is now read-only.

Commit

Permalink
Browse files Browse the repository at this point in the history
test: avoid compiler warnings due to size_t truncation
  • Loading branch information
piscisaureus committed Jun 4, 2012
1 parent 64f8cf4 commit 0dff0e7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/test-tcp-writealot.c
Expand Up @@ -37,9 +37,9 @@ static int shutdown_cb_called = 0;
static int connect_cb_called = 0;
static int write_cb_called = 0;
static int close_cb_called = 0;
static int bytes_sent = 0;
static int bytes_sent_done = 0;
static int bytes_received_done = 0;
static size_t bytes_sent = 0;
static size_t bytes_sent_done = 0;
static size_t bytes_received_done = 0;

static uv_connect_t connect_req;
static uv_shutdown_t shutdown_req;
Expand Down

0 comments on commit 0dff0e7

Please sign in to comment.