Skip to content

Commit

Permalink
warning fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
bradh352 committed Jan 8, 2025
1 parent 5dd2941 commit 2ca4ee0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions src/lib/event/ares_event_configchg.c
Original file line number Diff line number Diff line change
Expand Up @@ -722,13 +722,16 @@ void ares_event_configchg_destroy(ares_event_configchg_t *configchg)
ares_status_t ares_event_configchg_init(ares_event_configchg_t **configchg,
ares_event_thread_t *e)
{
(void)configchg;
(void)e;
/* No ability */
return ARES_ENOTIMP;
}

void ares_event_configchg_destroy(ares_event_configchg_t *configchg)
{
/* No-op */
(void)configchg;
}

#endif
2 changes: 1 addition & 1 deletion test/ares-fuzz.c
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
#include <fcntl.h>
#include <stdlib.h>
#include <string.h>
#ifdef WIN32
#ifdef _WIN32
# include <io.h>
#else
# include <unistd.h>
Expand Down

0 comments on commit 2ca4ee0

Please sign in to comment.