mirror of
https://github.com/rclone/rclone.git
synced 2025-08-19 09:52:05 +02:00
build: fix problems found with unconvert
This commit is contained in:
@@ -211,8 +211,8 @@ outer:
|
||||
}
|
||||
|
||||
reqSize := remaining
|
||||
if reqSize >= int64(chunkSize) {
|
||||
reqSize = int64(chunkSize)
|
||||
if reqSize >= chunkSize {
|
||||
reqSize = chunkSize
|
||||
}
|
||||
|
||||
// Make a block of memory
|
||||
|
Reference in New Issue
Block a user