Navigation Menu

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

Commit

Permalink
Windows: add missing semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
piscisaureus committed May 15, 2012
1 parent 60b5c73 commit b74fcbb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/win/pipe.c
Expand Up @@ -1529,7 +1529,7 @@ void uv_process_pipe_connect_req(uv_loop_t* loop, uv_pipe_t* handle,
uv_connect_t* req) {
assert(handle->type == UV_NAMED_PIPE);

UNREGISTER_HANDLE_REQ(loop, handle, req)
UNREGISTER_HANDLE_REQ(loop, handle, req);

if (req->cb) {
if (REQ_SUCCESS(req)) {
Expand Down

0 comments on commit b74fcbb

Please sign in to comment.