Merge "fastbootd: Fix getvar max-download-size formatting."

This commit is contained in:
Treehugger Robot 2018-09-05 22:11:40 +00:00 committed by Gerrit Code Review
commit 6e66d36c24
1 changed files with 1 additions and 1 deletions

View File

@ -139,7 +139,7 @@ bool GetSlotUnbootable(FastbootDevice* device, const std::vector<std::string>& a
bool GetMaxDownloadSize(FastbootDevice* /* device */, const std::vector<std::string>& /* args */,
std::string* message) {
*message = std::to_string(kMaxDownloadSizeDefault);
*message = android::base::StringPrintf("0x%X", kMaxDownloadSizeDefault);
return true;
}