diff options
author | lloyd <[email protected]> | 2008-06-26 16:10:47 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2008-06-26 16:10:47 +0000 |
commit | 1e2a389d850edc93be424c92211d288e3bed7be7 (patch) | |
tree | 28aade9747aec1559e333e1bf3ef9d1c2a8fbe49 | |
parent | 609b6553414aa06cef322d528d7037988e8c8b90 (diff) | |
parent | e20afa6a6918298bec12fa0b13c655aae66758f4 (diff) |
merge of '763336fcbf1dad6a9acfdc1e899b59916ab55a20'
and 'f6d0cb6f9569d228ed6a11d021c3f57f55220bde'
-rw-r--r-- | modules/es_ftw/es_ftw.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/es_ftw/es_ftw.cpp b/modules/es_ftw/es_ftw.cpp index d13016104..45271b040 100644 --- a/modules/es_ftw/es_ftw.cpp +++ b/modules/es_ftw/es_ftw.cpp @@ -105,7 +105,7 @@ FTW_EntropySource::FTW_EntropySource(const std::string& p) : path(p) *************************************************/ void FTW_EntropySource::do_fast_poll() { - poll(32*1024); + poll(32); } /************************************************* @@ -113,7 +113,7 @@ void FTW_EntropySource::do_fast_poll() *************************************************/ void FTW_EntropySource::do_slow_poll() { - poll(256*1024); + poll(256); } /************************************************* |