Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/transform.c
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ static const signed char base32hex_decode_table[] = {
30, 31
};
static const ssize_t base32hex_decode_table_size =
sizeof(base32hex_encode_table) / sizeof(*base32hex_encode_table);
sizeof(base32hex_decode_table) / sizeof(*base32hex_decode_table);

static const unsigned char base64_encode_table[] =
"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
Expand Down