aboutsummaryrefslogtreecommitdiff
path: root/lib/base64.h
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2004-02-23 08:07:55 +0000
committerDaniel Stenberg <daniel@haxx.se>2004-02-23 08:07:55 +0000
commit1aba4c519b5389c2930075d4f555a003904a0431 (patch)
treeb918a3697d5cbf83ef9dd98b0f326582fad78997 /lib/base64.h
parentae76a675660a48d462922ff5cb7e2001f6d4cff6 (diff)
The base64 encode function now takes a size_t for size, not an int as
previously.
Diffstat (limited to 'lib/base64.h')
-rw-r--r--lib/base64.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/base64.h b/lib/base64.h
index c4d321e17..767637e3d 100644
--- a/lib/base64.h
+++ b/lib/base64.h
@@ -22,6 +22,6 @@
*
* $Id$
***************************************************************************/
-int Curl_base64_encode(const void *data, int size, char **str);
+int Curl_base64_encode(const void *data, size_t size, char **str);
int Curl_base64_decode(const char *str, void *data);
#endif