We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e284a95 commit 7370fd5Copy full SHA for 7370fd5
1 file changed
extmod/modubinascii.c
@@ -173,7 +173,7 @@ mp_obj_t mod_binascii_b2a_base64(mp_obj_t data) {
173
174
// Second pass, we convert number base 64 values to actual base64 ascii encoding
175
out = (byte*)vstr.buf;
176
- for (mp_uint_t i = vstr.len - 1; i--;) {
+ for (mp_uint_t j = vstr.len - 1; j--;) {
177
if (*out < 26) {
178
*out += 'A';
179
} else if (*out < 52) {
0 commit comments