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

Unified Diff: net/tools/flip_server/constants.h

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/flip_server/constants.h
diff --git a/net/tools/flip_server/constants.h b/net/tools/flip_server/constants.h
index 551650909c4eb159327965bfc4774c96373ed7e2..d5ed989a8bc14b95baab1c086e77e7e9d640842e 100644
--- a/net/tools/flip_server/constants.h
+++ b/net/tools/flip_server/constants.h
@@ -17,8 +17,9 @@ const int kSpdySegmentSize = kSSLSegmentSize - kSpdyOverhead;
#define ACCEPTOR_CLIENT_IDENT \
acceptor_->listen_ip_ << ":" << acceptor_->listen_port_ << " "
-#define IPV4_PRINTABLE_FORMAT(IP) (((IP)>>0)&0xff), (((IP)>>8)&0xff), \
- (((IP)>>16)&0xff), (((IP)>>24)&0xff)
+#define IPV4_PRINTABLE_FORMAT(IP) \
+ (((IP) >> 0) & 0xff), (((IP) >> 8) & 0xff), (((IP) >> 16) & 0xff), \
+ (((IP) >> 24) & 0xff)
#define PIDFILE "/var/run/flip-server.pid"

Powered by Google App Engine
This is Rietveld 408576698