Skip to content

Commit

Permalink
src: use uv_stream_t, not uv_stream_s
Browse files Browse the repository at this point in the history
PR-URL: #16512
Refs: libuv/libuv#1607
Reviewed-By: Daniel Bevenius <daniel.bevenius@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Santiago Gimeno <santiago.gimeno@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
  • Loading branch information
bnoordhuis authored and gibfahn committed Oct 31, 2017
1 parent bac2aff commit 77c02aa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/inspector_socket.cc
Original file line number Diff line number Diff line change
Expand Up @@ -513,7 +513,7 @@ static int message_complete_cb(http_parser* parser) {
return 0;
}

static void data_received_cb(uv_stream_s* tcp, ssize_t nread,
static void data_received_cb(uv_stream_t* tcp, ssize_t nread,
const uv_buf_t* buf) {
#if DUMP_READS
if (nread >= 0) {
Expand Down

0 comments on commit 77c02aa

Please sign in to comment.