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

Commit 40f98f46 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

am: 2f479092

Change-Id: I74f47360615514db030fba47fdd4191d63b55e05
parents 4bff0d5c 2f479092
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;
}