Fix pool to uint from int

This commit is contained in:
PhatPhuckDave
2024-07-23 09:31:26 +02:00
parent f00dcafac4
commit c73a6066c4
3 changed files with 16 additions and 16 deletions

View File

@@ -3,6 +3,6 @@ package pdu
import "sync"
var ByteBufferPool = &BufferPoolManager{
pools: make(map[int]*sync.Pool),
pools: make(map[uint]*sync.Pool),
mu: sync.Mutex{},
}