about summary refs log tree commit diff stats
path: root/base64.c
diff options
context:
space:
mode:
Diffstat (limited to 'base64.c')
-rw-r--r--base64.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/base64.c b/base64.c
index 253bf4e..efcf3d4 100644
--- a/base64.c
+++ b/base64.c
@@ -86,7 +86,7 @@ b64_encode(char* in, unsigned int in_len, char* out){
 	return k;
 }
 
-unsigned int
+int
 b64_decode(char* in, unsigned int in_len, char* out){
 
 	unsigned int i=0, j=0, k=0, s[4];