Commit 97be452e authored by Nikias Bassen's avatar Nikias Bassen

base64: silence compiler warning by using correct type

parent 76d4a586
...@@ -74,7 +74,8 @@ char *base64encode(const unsigned char *buf, size_t *size) ...@@ -74,7 +74,8 @@ char *base64encode(const unsigned char *buf, size_t *size)
static int base64decode_block(unsigned char *target, const char *data, size_t data_size) static int base64decode_block(unsigned char *target, const char *data, size_t data_size)
{ {
int w1,w2,w3,w4; int w1,w2,w3,w4;
int n,i; int i;
size_t n;
if (!data || (data_size <= 0)) { if (!data || (data_size <= 0)) {
return 0; return 0;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment