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);