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

Commit

Permalink
src: use uv_stream_t, not uv_stream_s
Browse files Browse the repository at this point in the history
PR-URL: nodejs/node#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 Qard committed Nov 2, 2017
1 parent cc748f3 commit 062c740
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 062c740

Please sign in to comment.