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

Unified Diff: net/base/dns_util.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/base/dns_util.cc
diff --git a/net/base/dns_util.cc b/net/base/dns_util.cc
index c095eb80ad6cd49bb0e61d8c9c9f9eafdfc48e3d..a5c58d94d378921c55ad43f10c8c453a40131073 100644
--- a/net/base/dns_util.cc
+++ b/net/base/dns_util.cc
@@ -50,7 +50,7 @@ bool DNSDomainFromDot(const base::StringPiece& dotted, std::string* out) {
if (namelen + 1 > sizeof name)
return false;
- if (namelen == 0) // Empty names e.g. "", "." are not valid.
+ if (namelen == 0) // Empty names e.g. "", "." are not valid.
return false;
name[namelen++] = 0; // This is the root label (of length 0).

Powered by Google App Engine
This is Rietveld 408576698