Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(479)

Unified Diff: net/spdy/fuzzing/hpack_fuzz_mutator.cc

Issue 266243004: Clang format slam. Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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;

Powered by Google App Engine
This is Rietveld 408576698