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

Unified Diff: net/tools/crl_set_dump/crl_set_dump.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/tools/crl_set_dump/crl_set_dump.cc
diff --git a/net/tools/crl_set_dump/crl_set_dump.cc b/net/tools/crl_set_dump/crl_set_dump.cc
index ce6f5e5570d1f719e12f495e1369ae573e2233d0..d784943caad4c1a18cd08c4d5de061f73842f3d7 100644
--- a/net/tools/crl_set_dump/crl_set_dump.cc
+++ b/net/tools/crl_set_dump/crl_set_dump.cc
@@ -18,8 +18,10 @@
#include "net/cert/crl_set.h"
static int Usage(const char* argv0) {
- fprintf(stderr, "Usage: %s <crl-set file> [<delta file>]"
- " [<resulting output file>]\n", argv0);
+ fprintf(stderr,
+ "Usage: %s <crl-set file> [<delta file>]"
+ " [<resulting output file>]\n",
+ argv0);
return 1;
}
@@ -73,7 +75,8 @@ int main(int argc, char** argv) {
i++) {
printf("%s\n", base::HexEncode(i->first.data(), i->first.size()).c_str());
for (std::vector<std::string>::const_iterator j = i->second.begin();
- j != i->second.end(); j++) {
+ j != i->second.end();
+ j++) {
printf(" %s\n", base::HexEncode(j->data(), j->size()).c_str());
}
}

Powered by Google App Engine
This is Rietveld 408576698