We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b810da2 commit b5500f9Copy full SHA for b5500f9
Qiniu/IO/Resumable/ResumablePut.cs
@@ -88,7 +88,7 @@ public CallRet PutFile(string upToken, string localFile, string key)
88
int readLen = BLOCKSIZE;
89
for (int i = 0; i < block_cnt; i++)
90
{
91
- if (i == (block_cnt - 1)) {
+ if (i == block_cnt - 1) {
92
readLen = (int)(fsize - (long)i * BLOCKSIZE);
93
}
94
fs.Seek((long)i * BLOCKSIZE, SeekOrigin.Begin);
0 commit comments