Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 2f479092 authored by David Anderson's avatar David Anderson Committed by android-build-merger
Browse files

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

am: 6e66d36c

Change-Id: I8f24118dd1daf36dc3a46c267b361fde350a0e35
parents cf6b8428 6e66d36c
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;
}