| Index: file_hasher.cc
|
| diff --git a/file_hasher.cc b/file_hasher.cc
|
| index fd6bda27c1e9d569ccf2bcab570708365e0c8e31..14e96040bf0747206629688e7b3cd902ceeb99a0 100644
|
| --- a/file_hasher.cc
|
| +++ b/file_hasher.cc
|
| @@ -48,7 +48,7 @@ bool FileHasher::Initialize(simple_file::File *source,
|
| unsigned int depth,
|
| unsigned int blocks,
|
| const char *alg) {
|
| - if (depth == 0 || !alg || !source || !destination) {
|
| + if (!alg || !source || !destination) {
|
| LOG(ERROR) << "Invalid arguments supplied to Initialize";
|
| LOG(INFO) << "depth: " << depth;
|
| LOG(INFO) << "s: " << source << " d: " << destination;
|
|
|