Skip to content

Commit

Permalink
Use UintToString() to convert port numbers.
Browse files Browse the repository at this point in the history
No change in behaviour.

BUG=505479
TEST=compile

Review URL: https://codereview.chromium.org/1349293009

Cr-Commit-Position: refs/heads/master@{#349792}
  • Loading branch information
ricea authored and Commit bot committed Sep 18, 2015
1 parent e93a461 commit 460198b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion url/scheme_host_port.cc
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 460198b

Please sign in to comment.