Index: url/scheme_host_port.cc |
diff --git a/url/scheme_host_port.cc b/url/scheme_host_port.cc |
index 9c122957947f3ac09dc53cedff2582f16ac7448a..8f90f5cdb7de34fa9cd3c208f0b4b7eca7fbd61c 100644 |
--- a/url/scheme_host_port.cc |
+++ b/url/scheme_host_port.cc |
@@ -158,7 +158,7 @@ std::string SchemeHostPort::Serialize() const { |
return result; |
if (port_ != default_port) { |
result.push_back(':'); |
- result.append(base::IntToString(port_)); |
+ result.append(base::UintToString(port_)); |
} |
return result; |