Skip to content

Commit

Permalink
net: fix redundant increment of guid
Browse files Browse the repository at this point in the history
  • Loading branch information
dcrewi committed Jul 4, 2012
1 parent 1f954d9 commit fca072a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/net.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ function Stream() {
let guid = ++ GUID
return streams[guid] =
{ __proto__: Stream.prototype
, _guid: ++ guid
, _guid: guid
}
}
Stream.prototype =
Expand Down

0 comments on commit fca072a

Please sign in to comment.