diff options
author | zyp <zyp@localhost> | 2006-10-24 00:25:03 +0200 |
---|---|---|
committer | zyp <zyp@localhost> | 2006-10-24 00:25:03 +0200 |
commit | e19c4d106d1369e73d916ad4d87b3be5d1d1b1f6 (patch) | |
tree | 36de32b20fb8702bdcb38589ac474d6b5307f845 /src | |
parent | 06b49ba69db808608690395778f3608ea51c8d74 (diff) |
[project @ zyp-20061023222503-ba6be89fef3b5f39]
[project @ 62]
Solved performance problem.
Diffstat (limited to 'src')
-rw-r--r-- | src/hash.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/hash.cpp b/src/hash.cpp index c4adcd4..aa2d573 100644 --- a/src/hash.cpp +++ b/src/hash.cpp @@ -62,9 +62,9 @@ namespace Multihash { } void _hash_file(int fileno, Hash* hash) { - char* buf = new char[32768]; + char* buf = new char[131072]; int s; - while((s = read(fileno, buf, 32768)) > 0) { + while((s = read(fileno, buf, 131072)) > 0) { hash->_update(buf, s); } delete buf; |