diff options
author | bptato <nincsnevem662@gmail.com> | 2021-02-03 09:41:20 +0000 |
---|---|---|
committer | bptato <nincsnevem662@gmail.com> | 2021-02-03 09:41:20 +0000 |
commit | 5cd5a1735af6a5c649c2d6699f8022e722fff170 (patch) | |
tree | 695975ed5d417b6707edabd7a3d197ef1a1c0993 /proto.h | |
parent | Some cleanup for base64_encode (diff) | |
download | w3m-5cd5a1735af6a5c649c2d6699f8022e722fff170.tar.gz w3m-5cd5a1735af6a5c649c2d6699f8022e722fff170.zip |
base64_encode: fix input and output length types
Diffstat (limited to '')
-rw-r--r-- | proto.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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); |