diff options
Diffstat (limited to 'libgo/go/old/netchan/export.go')
-rw-r--r-- | libgo/go/old/netchan/export.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libgo/go/old/netchan/export.go b/libgo/go/old/netchan/export.go index d94c4b1..a65b260 100644 --- a/libgo/go/old/netchan/export.go +++ b/libgo/go/old/netchan/export.go @@ -163,7 +163,7 @@ func (client *expClient) run() { // all messages <=N have been seen by the recipient. We check anyway. expLog("sequence out of order:", client.ackNum, hdr.SeqNum) } - if client.ackNum < hdr.SeqNum { // If there has been an error, don't back up the count. + if client.ackNum < hdr.SeqNum { // If there has been an error, don't back up the count. client.ackNum = hdr.SeqNum } client.mu.Unlock() |