1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2026-05-08 21:49:08 -04:00

fix type conversion

This commit is contained in:
Darien Raymond
2017-05-26 03:02:13 +02:00
parent b16a82024c
commit 10bc421af9

View File

@@ -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)