summaryrefslogtreecommitdiff
path: root/base64-encode.c
diff options
context:
space:
mode:
Diffstat (limited to 'base64-encode.c')
-rw-r--r--base64-encode.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/base64-encode.c b/base64-encode.c
index 0e81b3f5..f23115a9 100644
--- a/base64-encode.c
+++ b/base64-encode.c
@@ -41,7 +41,7 @@
#define ENCODE(alphabet,x) ((alphabet)[0x3F & (x)])
static void
-encode_raw(const char *alphabet,
+encode_raw(const uint8_t *alphabet,
uint8_t *dst, size_t length, const uint8_t *src)
{
const uint8_t *in = src + length;