revert error caused by fixC4244Warning (#20190)

This commit is contained in:
coulsonwang 2019-10-11 16:39:33 +08:00 committed by minggo
parent a91091e93a
commit 68aedd7ef0
1 changed files with 1 additions and 1 deletions

View File

@ -45,7 +45,7 @@ int _base64Decode(const unsigned char *input, unsigned int input_len, unsigned c
}
char_count = 0;
unsigned char bits = 0;
int bits = 0;
for( input_idx=0; input_idx < input_len ; input_idx++ ) {
c = input[ input_idx ];
if (c == '=')