mirror of
https://github.com/espressif/esp-protocols.git
synced 2025-07-21 22:42:23 +02:00
fix the bug that in mdns test code redefine esp_err_t to uint32_t, which should be int32_t
* Original commit: espressif/esp-idf@81e4cad615
This commit is contained in:
committed by
suren-gabrielyan-espressif
parent
6d99957f2d
commit
259d3fc609
@ -67,8 +67,7 @@
|
||||
((uint32_t)((c) & 0xff) << 16) | \
|
||||
((uint32_t)((b) & 0xff) << 8) | \
|
||||
(uint32_t)((a) & 0xff)
|
||||
|
||||
typedef uint32_t esp_err_t;
|
||||
typedef int32_t esp_err_t;
|
||||
|
||||
typedef void * xSemaphoreHandle;
|
||||
typedef void * xQueueHandle;
|
||||
|
Reference in New Issue
Block a user