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

Unified Diff: net/quic/quic_stream_sequencer_buffer.cc

Issue 1954183002: Fix a QuicStreamSequencerBuffer logging issue caused by inapproriate itoa function. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/quic_stream_sequencer_buffer.cc
diff --git a/net/quic/quic_stream_sequencer_buffer.cc b/net/quic/quic_stream_sequencer_buffer.cc
index dabb2ce37090eeac8c1005dc59595ae35be3af44..0f56bf96db4908edd20755cc36fcb4f5fef476f7 100644
--- a/net/quic/quic_stream_sequencer_buffer.cc
+++ b/net/quic/quic_stream_sequencer_buffer.cc
@@ -16,8 +16,8 @@ namespace net {
namespace {
string RangeDebugString(QuicStreamOffset start, QuicStreamOffset end) {
- return string("[") + base::IntToString(start) + ", " +
- base::IntToString(end) + ") ";
+ return string("[") + base::Uint64ToString(start) + ", " +
+ base::Uint64ToString(end) + ") ";
}
} // namespace
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698