extmod/modubinascii: Don't post-increment variable that won't be used.

pull/3276/merge
Damien George 2017-08-21 22:05:09 +10:00
rodzic f5309fc4ff
commit 1c6b442d32
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -194,7 +194,7 @@ mp_obj_t mod_binascii_b2a_base64(mp_obj_t data) {
*out++ = (in[0] & 0x03) << 4;
*out++ = 64;
}
*out++ = 64;
*out = 64;
}
// Second pass, we convert number base 64 values to actual base64 ascii encoding