Skip to content

Commit

Permalink
Fix linker error
Browse files Browse the repository at this point in the history
  • Loading branch information
ralight committed Aug 22, 2021
1 parent 6608e85 commit 3334901
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions apps/mosquitto_passwd/mosquitto_passwd.c
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,15 @@ static FILE *mpw_tmpfile(void)
}
#endif

int log__printf(void *mosq, unsigned int level, const char *fmt, ...)
{
/* Stub for misc_mosq.c */
UNUSED(mosq);
UNUSED(level);
UNUSED(fmt);
return 0;
}


static void print_usage(void)
{
Expand Down

0 comments on commit 3334901

Please sign in to comment.