mirror of
https://github.com/espressif/esp-mqtt.git
synced 2025-11-15 14:59:38 +01:00
Previously, uint32_t and size_t were used interchangeably. These types are interchangeable on Xtensa gcc (uint32_t == size_t == unsigned int), but not on most other 32-bit gcc architectures (where uint32_t == unsigned long, size_t == unsigned int).