mirror of
https://github.com/espressif/esp-idf.git
synced 2025-11-14 01:06:37 +00:00
The ESP_LOGD message that prints FIFO line sizes used %u for uint32_t, which may cause incorrect output on some architectures (e.g., ESP32-P4 where uint32_t maps to unsigned long). To ensure portable and correct logging across all supported platforms, this patch replaces %u with %" PRIu32 ", defined in <inttypes.h>. No functional behavior is affected — this is a formatting correction for debug output only.
106 KiB
106 KiB