From 327ec688e8ade077a71356c339122ab263799af6 Mon Sep 17 00:00:00 2001 From: Tim Gates Date: Fri, 4 Dec 2020 17:45:23 +1100 Subject: [PATCH] docs: fix simple typo, ingore -> ignore There is a small typo in base64.c. Should read `ignore` rather than `ingore`. --- base64.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/base64.c b/base64.c index 9551490..432d813 100644 --- a/base64.c +++ b/base64.c @@ -149,7 +149,7 @@ int Base64decode(char *bufplain, const char *bufcoded) nprbytes -= 4; } - /* Note: (nprbytes == 1) would be an error, so just ingore that case */ + /* Note: (nprbytes == 1) would be an error, so just ignore that case */ if (nprbytes > 1) { *(bufout++) = (unsigned char) (pr2six[*bufin] << 2 | pr2six[bufin[1]] >> 4);