internal/zuc: fix build error

This commit is contained in:
Sun Yimin 2025-03-11 16:13:59 +08:00 committed by GitHub
parent a49eecd572
commit 21f96e536b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -232,12 +232,7 @@ func benchmarkSeek(b *testing.B, offset uint64) {
var key [16]byte
var iv [16]byte
stream, _ := NewCipher(key[:], iv[:])
eea, ok := stream.(*eea)
if !ok {
b.Fatal("not an eea")
}
eea, _ := NewCipher(key[:], iv[:])
b.ResetTimer()
for i := 0; i < b.N; i++ {