diff options
author | Tianjie Xu <xunchang@google.com> | 2020-07-06 21:23:45 +0000 |
---|---|---|
committer | Tianjie Xu <xunchang@google.com> | 2020-07-06 21:23:45 +0000 |
commit | 242e33af30f7aa74531d436e1609100aae3b4394 (patch) | |
tree | 048c16c3935bac60f150f676ad8f8d8493248ce1 /common/error_code_utils.cc | |
parent | 33d180914ef2cb9286595fb1fdcc3511c5fb1c34 (diff) | |
parent | 55abd3cbae6bd150b3534728a63befd1cadd6c5e (diff) |
Merge "Merge remote-tracking branch 'aosp/upstream-master' into merge"
Diffstat (limited to 'common/error_code_utils.cc')
-rw-r--r-- | common/error_code_utils.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/error_code_utils.cc b/common/error_code_utils.cc index 3fbf0feb..64df24ab 100644 --- a/common/error_code_utils.cc +++ b/common/error_code_utils.cc @@ -175,7 +175,7 @@ string ErrorCodeToString(ErrorCode code) { // error codes which should be added here. } - return "Unknown error: " + base::UintToString(static_cast<unsigned>(code)); + return "Unknown error: " + base::NumberToString(static_cast<unsigned>(code)); } } // namespace utils |