From 41288c217e040f04b43e2285ef301f70e9cd040a Mon Sep 17 00:00:00 2001 From: Benjamin Rood Date: Thu, 9 Sep 2021 11:06:11 -0400 Subject: [PATCH] Fixed misspelled 'download' command format in FBCopy This patch fixes a misspelled 'download' command in the FBCopy run() function. I noticed this error while perusing the codebase for some other modifications that are in progress. --- libuuu/fastboot.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libuuu/fastboot.cpp b/libuuu/fastboot.cpp index 9028e72c..a165d64d 100644 --- a/libuuu/fastboot.cpp +++ b/libuuu/fastboot.cpp @@ -354,7 +354,7 @@ int FBCopy::run(CmdCtx *ctx) if (sz > m_Maxsize_pre_cmd) sz = m_Maxsize_pre_cmd; - cmd.format("donwload:%08X", sz); + cmd.format("download:%08X", sz); if (fb.Transport(cmd, buff->data() + i, sz)) { if (fb.m_info == "EPIPE")