summaryrefslogtreecommitdiff
path: root/examples/base64dec.c
diff options
context:
space:
mode:
Diffstat (limited to 'examples/base64dec.c')
-rw-r--r--examples/base64dec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/base64dec.c b/examples/base64dec.c
index 624de628..d05d924a 100644
--- a/examples/base64dec.c
+++ b/examples/base64dec.c
@@ -58,7 +58,7 @@ int
main(int argc UNUSED, char **argv UNUSED)
{
/* "buffer" will hold the bytes from disk: */
- uint8_t * buffer = xalloc (CHUNK_SIZE);
+ char * buffer = xalloc (CHUNK_SIZE);
/* "result" will hold bytes before output: */
uint8_t * result = xalloc (DECODED_SIZE);