1
0
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:
Darien Raymond 2017-05-26 03:02:13 +02:00
parent b16a82024c
commit 10bc421af9
No known key found for this signature in database
GPG Key ID: 7251FFA14BB18169

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)