go vet fixes

This commit is contained in:
Sergey Frolov 2017-09-08 15:51:30 -06:00
parent f6ecfa941c
commit 3b53b610a6
2 changed files with 1 additions and 2 deletions

View file

@ -444,5 +444,5 @@ func (uconn *UConn) GetOutKeystream(length int) ([]byte, error) {
// AEAD.Seal() does not mutate internal state, other ciphers might
return outCipher.Seal(nil, uconn.out.seq[:], zeros, nil), nil
}
return nil, errors.New("Could not convert OutCipher to cipher.AEAD")
return nil, errors.New("Could not convert OutCipher to cipher.AEAD")
}