aboutsummaryrefslogtreecommitdiffstats
path: root/checks
diff options
context:
space:
mode:
authorlloyd <[email protected]>2010-12-22 16:42:48 +0000
committerlloyd <[email protected]>2010-12-22 16:42:48 +0000
commita7b700aa96991b3ee4a5363ff977a39d66c2efdd (patch)
tree2e043aae39b99136b8af6b853f6fa4cb0eadacb7 /checks
parente268a63972984068bd93b137de5286a2950be5f5 (diff)
Allow benchmark buffers up to 64 MiB
Diffstat (limited to 'checks')
-rw-r--r--checks/check.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/checks/check.cpp b/checks/check.cpp
index ca9ec84e9..601e41227 100644
--- a/checks/check.cpp
+++ b/checks/check.cpp
@@ -165,7 +165,7 @@ int main(int argc, char* argv[])
if(opts.is_set("buf-size"))
{
buf_size = std::atoi(opts.value("buf-size").c_str());
- if(buf_size == 0 || buf_size > 8192)
+ if(buf_size == 0 || buf_size > 64*1024)
{
std::cout << "Invalid argument to --buf-size\n";
return 2;