Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
src: use uv_stream_t, not uv_stream_s
  • Loading branch information
bnoordhuis committed Oct 26, 2017
commit d9d92f07e2a5fc8d24abf9c6eda47c72532ccd09
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