Index: net/spdy/spdy_test_utils.cc |
diff --git a/net/spdy/spdy_test_utils.cc b/net/spdy/spdy_test_utils.cc |
index eb721ef32c0348a90e1e173c6b52435488ed3f31..1b2e178d62222338b699a1bfedd02f23b1a6118f 100644 |
--- a/net/spdy/spdy_test_utils.cc |
+++ b/net/spdy/spdy_test_utils.cc |
@@ -48,8 +48,9 @@ std::string HexDumpWithMarks(const unsigned char* data, int length, |
} |
hex = hex + " "; |
- for (const unsigned char *p = row; p < row + 4 && p < row + length; ++p) |
+ for (const unsigned char* p = row; p < row + 4 && p < row + length; ++p) { |
hex += (*p >= 0x20 && *p <= 0x7f) ? (*p) : '.'; |
+ } |
hex = hex + '\n'; |
} |