| Index: net/spdy/fuzzing/hpack_fuzz_mutator.cc
|
| diff --git a/net/spdy/fuzzing/hpack_fuzz_mutator.cc b/net/spdy/fuzzing/hpack_fuzz_mutator.cc
|
| index c6d4e92a1385e2a92089aa5b92cb1d8b5d725087..bebb0b95bb5297175e41959ea62df4d8f1c79238 100644
|
| --- a/net/spdy/fuzzing/hpack_fuzz_mutator.cc
|
| +++ b/net/spdy/fuzzing/hpack_fuzz_mutator.cc
|
| @@ -35,8 +35,8 @@ int main(int argc, char** argv) {
|
| if (!command_line.HasSwitch(kFileToParse) ||
|
| !command_line.HasSwitch(kFileToWrite) ||
|
| !command_line.HasSwitch(kFlipsPerThousand)) {
|
| - LOG(ERROR) << "Usage: " << argv[0]
|
| - << " --" << kFileToParse << "=/path/to/file.in"
|
| + LOG(ERROR) << "Usage: " << argv[0] << " --" << kFileToParse
|
| + << "=/path/to/file.in"
|
| << " --" << kFileToWrite << "=/path/to/file.out"
|
| << " --" << kFlipsPerThousand << "=10";
|
| return -1;
|
| @@ -46,7 +46,7 @@ int main(int argc, char** argv) {
|
|
|
| int flip_ratio = 0;
|
| CHECK(base::StringToInt(command_line.GetSwitchValueASCII(kFlipsPerThousand),
|
| - &flip_ratio));
|
| + &flip_ratio));
|
|
|
| DVLOG(1) << "Reading input from " << file_to_parse;
|
| HpackFuzzUtil::Input input;
|
|
|