Skip to content

Commit 68a9e14

Browse files
committed
fix(mdns): Cleanup includes in mdns.c
Closes #725
1 parent 827ea65 commit 68a9e14

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

components/mdns/mdns.c

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,19 +5,17 @@
55
*/
66

77
#include <string.h>
8-
#include <sys/param.h>
98
#include "freertos/FreeRTOS.h"
109
#include "freertos/task.h"
1110
#include "freertos/queue.h"
1211
#include "freertos/semphr.h"
1312
#include "esp_log.h"
1413
#include "esp_event.h"
14+
#include "esp_random.h"
15+
#include "esp_check.h"
1516
#include "mdns.h"
1617
#include "mdns_private.h"
1718
#include "mdns_networking.h"
18-
#include "esp_log.h"
19-
#include "esp_random.h"
20-
#include "esp_check.h"
2119

2220
static void _mdns_browse_item_free(mdns_browse_t *browse);
2321
static esp_err_t _mdns_send_browse_action(mdns_action_type_t type, mdns_browse_t *browse);

0 commit comments

Comments
 (0)