From 6ae806f60d33190770f5c9f853096210c6163f04 Mon Sep 17 00:00:00 2001 From: Jeroen Domburg Date: Sun, 14 Dec 2014 12:23:39 +0100 Subject: [PATCH] unsigned -> unsigned int, to stop some compilers from throwing a warning --- user/base64.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/user/base64.c b/user/base64.c index 34d1780..3ea6dee 100644 --- a/user/base64.c +++ b/user/base64.c @@ -45,9 +45,9 @@ static int ICACHE_FLASH_ATTR base64decode(const char in[4], char out[3]) { /* decode a base64 string in one shot */ int ICACHE_FLASH_ATTR base64_decode(size_t in_len, const char *in, size_t out_len, unsigned char *out) { - unsigned ii, io; + unsigned int ii, io; uint32_t v; - unsigned rem; + unsigned int rem; for(io=0,ii=0,v=0,rem=0;ii