Skip to content
Snippets Groups Projects
Commit ac5d2769 authored by Niels Möller's avatar Niels Möller
Browse files

Fixed type in comment.

parent 2a5c32d0
Branches
Tags
No related merge requests found
...@@ -54,7 +54,7 @@ extern "C" { ...@@ -54,7 +54,7 @@ extern "C" {
/* We have at most 4 buffered bits, and a total of (4 + length * 8) bits. */ /* We have at most 4 buffered bits, and a total of (4 + length * 8) bits. */
#define BASE64_ENCODE_LENGTH(length) (((length) * 8 + 4)/6) #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 #define BASE64_ENCODE_FINAL_LENGTH 3
/* Exact length of output generated by base64_encode_raw, including /* Exact length of output generated by base64_encode_raw, including
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment