Skip to content

Commit 259d3fc

Browse files
jack0csuren-gabrielyan-espressif
authored andcommitted
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@81e4cad
1 parent 6d99957 commit 259d3fc

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

components/mdns/test_afl_fuzz_host/esp32_compat.h

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,8 +67,7 @@
6767
((uint32_t)((c) & 0xff) << 16) | \
6868
((uint32_t)((b) & 0xff) << 8) | \
6969
(uint32_t)((a) & 0xff)
70-
71-
typedef uint32_t esp_err_t;
70+
typedef int32_t esp_err_t;
7271

7372
typedef void * xSemaphoreHandle;
7473
typedef void * xQueueHandle;

0 commit comments

Comments
 (0)