spelling: makes

Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
This commit is contained in:
Josh Soref 2025-01-28 12:06:13 -05:00
parent f8142aaa56
commit 0527df21d1

View file

@ -48,7 +48,7 @@ unsigned int base64_decode_inplace(char* buffer, unsigned int length) {
// Handle the padding if we broke out the loop early (0-2 '=' characters).
const unsigned int padding_amount = 4 - quad_index;
if (padding_amount > 2) return 0; // Mades no sense to pad an entire triplet.
if (padding_amount > 2) return 0; // Makes no sense to pad an entire triplet.
if (memcmp(buffer + read_index + quad_index, "==", padding_amount) != 0) return 0; // There are characters after our padding?
// Chop off extra unused low bits if we're padded.