From 469ea397d6f5c4a808fb4d08d8768680d2074007 Mon Sep 17 00:00:00 2001 From: Michael Gernoth Date: Sun, 6 Sep 2015 12:43:54 +0200 Subject: [PATCH] flash-ota: fix typo --- flash-ota.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/flash-ota.c b/flash-ota.c index 50f20f6..b9b96cc 100644 --- a/flash-ota.c +++ b/flash-ota.c @@ -45,7 +45,7 @@ #define MAX_RETRIES 5 #define NORMAL_MAX_PAYLOAD 37 -#define LOWE_MAX_PAYLOAD 17 +#define LOWER_MAX_PAYLOAD 17 extern char *optarg; @@ -384,8 +384,8 @@ int main(int argc, char **argv) fw_file = optarg; break; case 'l': - printf("Reducing payload-len from %d to %d\n", max_payloadlen, LOWE_MAX_PAYLOAD); - max_payloadlen = LOWE_MAX_PAYLOAD; + printf("Reducing payload-len from %d to %d\n", max_payloadlen, LOWER_MAX_PAYLOAD); + max_payloadlen = LOWER_MAX_PAYLOAD; break; case 's': serial = optarg; -- 2.39.2