Skip to content

Commit

Permalink
Fix: log message
Browse files Browse the repository at this point in the history
  • Loading branch information
jcorporation committed Aug 10, 2023
1 parent bfb38cb commit ee95c7e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/web_server/web_server.c
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ bool web_server_init(struct mg_mgr *mgr, struct t_config *config, struct t_mg_us
MYMPD_LOG_ERROR(NULL, "Not listening on any port.");
return false;
}
MYMPD_LOG_NOTICE("Serving files from \"%s\"", MYMPD_DOC_ROOT);
MYMPD_LOG_NOTICE(NULL, "Serving files from \"%s\"", MYMPD_DOC_ROOT);
return true;
}

Expand Down

0 comments on commit ee95c7e

Please sign in to comment.