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 <[email protected]>
Reviewed-By: James M Snell <[email protected]>
Reviewed-By: Anna Henningsen <[email protected]>
Reviewed-By: Santiago Gimeno <[email protected]>
Reviewed-By: Colin Ihrig <[email protected]>
  • Loading branch information
bnoordhuis authored and gibfahn committed Oct 30, 2017
1 parent f7bd833 commit e5617d4
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 e5617d4

Please sign in to comment.