The base64 encode function now takes a size_t for size, not an int as

previously.
This commit is contained in:
Daniel Stenberg
2004-02-23 08:07:55 +00:00
parent ae76a67566
commit 1aba4c519b
3 changed files with 4 additions and 4 deletions

View File

@@ -115,7 +115,7 @@ static char table64[]=
* went wrong, -1 is returned.
*
*/
int Curl_base64_encode(const void *inp, int insize, char **outptr)
int Curl_base64_encode(const void *inp, size_t insize, char **outptr)
{
unsigned char ibuf[3];
unsigned char obuf[4];
@@ -202,7 +202,7 @@ void *suck(int *);
int main(int argc, char **argv, char **envp)
{
char *base64;
int base64Len;
size_t base64Len;
unsigned char *data;
int dataLen;