Skip to content

Commit

Permalink
Merge pull request #2 from dcrewi/master
Browse files Browse the repository at this point in the history
net: fix redundant increment of guid
  • Loading branch information
ochameau committed Jul 4, 2012
2 parents 1f954d9 + fca072a commit 141f1d0
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 141f1d0

Please sign in to comment.