aboutsummaryrefslogtreecommitdiffstats
path: root/proto.h
diff options
context:
space:
mode:
authorbptato <nincsnevem662@gmail.com>2021-02-03 09:41:20 +0000
committerbptato <nincsnevem662@gmail.com>2021-02-03 09:41:20 +0000
commit5cd5a1735af6a5c649c2d6699f8022e722fff170 (patch)
tree695975ed5d417b6707edabd7a3d197ef1a1c0993 /proto.h
parentSome cleanup for base64_encode (diff)
downloadw3m-5cd5a1735af6a5c649c2d6699f8022e722fff170.tar.gz
w3m-5cd5a1735af6a5c649c2d6699f8022e722fff170.zip
base64_encode: fix input and output length types
Diffstat (limited to 'proto.h')
-rw-r--r--proto.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/proto.h b/proto.h
index 6aafbb4..899eec8 100644
--- a/proto.h
+++ b/proto.h
@@ -829,4 +829,4 @@ void srand48(long);
long lrand48(void);
#endif
-extern char *base64_encode(const unsigned char *src, int len);
+extern char *base64_encode(const unsigned char *src, size_t len);