Skip to content

Commit

Permalink
filesystem: test: Reduce chunksize to 32K
Browse files Browse the repository at this point in the history
  • Loading branch information
popcornmix committed Jan 19, 2018
1 parent e08ee11 commit 9fffdd0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xbmc/filesystem/SMBFile.h
Expand Up @@ -89,7 +89,7 @@ class CSMBFile : public IFile
bool OpenForWrite(const CURL& url, bool bOverWrite = false) override;
bool Delete(const CURL& url) override;
bool Rename(const CURL& url, const CURL& urlnew) override;
int GetChunkSize() override { return 2048*1024; }
int GetChunkSize() override { return 32*1024; }
int IoControl(EIoControl request, void* param) override;

protected:
Expand Down

0 comments on commit 9fffdd0

Please sign in to comment.