mirror of
https://github.com/espressif/esp-idf.git
synced 2025-07-30 10:47:19 +02:00
fix the bug that in mdns test code redefine esp_err_t to uint32_t, which should be int32_t
This commit is contained in:
@ -67,8 +67,7 @@
|
|||||||
((uint32_t)((c) & 0xff) << 16) | \
|
((uint32_t)((c) & 0xff) << 16) | \
|
||||||
((uint32_t)((b) & 0xff) << 8) | \
|
((uint32_t)((b) & 0xff) << 8) | \
|
||||||
(uint32_t)((a) & 0xff)
|
(uint32_t)((a) & 0xff)
|
||||||
|
typedef int32_t esp_err_t;
|
||||||
typedef uint32_t esp_err_t;
|
|
||||||
|
|
||||||
typedef void * xSemaphoreHandle;
|
typedef void * xSemaphoreHandle;
|
||||||
typedef void * xQueueHandle;
|
typedef void * xQueueHandle;
|
||||||
|
Reference in New Issue
Block a user