mirror of
https://github.com/micropython/micropython.git
synced 2026-01-26 05:40:23 +01:00
This happens with some compilers on some architectures, which don't define size_t as unsigned int. MicroPython's printf() dooesn't support obscure format specifiers for size_t, so the obvious choice is to explicitly cast to unsigned, to match %u used in printf().