From: Niels Möller Date: Mon, 27 Feb 2012 09:53:56 +0000 (+0100) Subject: Fixed type in comment. X-Git-Tag: nettle_2.5_release_20120707~84 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ac5d2769a0403ad4222677f66e0ca94a092e841d;p=thirdparty%2Fnettle.git Fixed type in comment. --- diff --git a/base64.h b/base64.h index 8ad37491..9766c4bf 100644 --- a/base64.h +++ b/base64.h @@ -54,7 +54,7 @@ extern "C" { /* We have at most 4 buffered bits, and a total of (4 + length * 8) bits. */ #define BASE64_ENCODE_LENGTH(length) (((length) * 8 + 4)/6) -/* Maximum lengbth of output generated by base64_encode_final. */ +/* Maximum length of output generated by base64_encode_final. */ #define BASE64_ENCODE_FINAL_LENGTH 3 /* Exact length of output generated by base64_encode_raw, including