mirror of
https://github.com/v2fly/v2ray-core.git
synced 2025-02-01 14:17:59 -05:00
fix type conversion
This commit is contained in:
parent
b16a82024c
commit
10bc421af9
@ -115,7 +115,7 @@ func init() {
|
||||
}
|
||||
size := f.GetValueAsInt(getDefaultPoolSize())
|
||||
if size > 0 {
|
||||
totalByteSize := size * 1024 * 1024
|
||||
totalByteSize := uint32(size) * 1024 * 1024
|
||||
mediumPool = NewBufferPool(Size, totalByteSize/Size)
|
||||
} else {
|
||||
mediumPool = NewSyncPool(Size)
|
||||
|
Loading…
Reference in New Issue
Block a user