Skip to content
Snippets Groups Projects
Commit 4efce7a5 authored by Sergi Hernandez's avatar Sergi Hernandez
Browse files

Changed the splitting size of a large binary bile to 100 kBytes blocks.

parent fcb1f4a1
No related branches found
No related tags found
No related merge requests found
Pipeline #
...@@ -244,8 +244,8 @@ int main(int argc,char *argv[]) ...@@ -244,8 +244,8 @@ int main(int argc,char *argv[])
end=true; end=true;
} }
} }
if((binary_size-written_size)>1024*20) if((binary_size-written_size)>1024*100)
write_size=1024*20; write_size=1024*100;
else else
write_size=binary_size-written_size; write_size=binary_size-written_size;
// compute the binary file checksum // compute the binary file checksum
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment