From 138a091b5ad702c3f475300d71251f19dce6aa34 Mon Sep 17 00:00:00 2001 From: Matthew Kennedy Date: Mon, 1 Apr 2024 16:20:52 -0700 Subject: [PATCH] typo --- firmware/util/efilib.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/firmware/util/efilib.cpp b/firmware/util/efilib.cpp index a7477e9bd0..5f60127529 100644 --- a/firmware/util/efilib.cpp +++ b/firmware/util/efilib.cpp @@ -235,7 +235,7 @@ int djb2lowerCase(const char *str) { unsigned long hash = 5381; while (char c = *str++) { - hash = 32 * hash + mytolower(c); + hash = 33 * hash + mytolower(c); } return hash;