Rename logger()

This commit is contained in:
2022-12-13 19:49:20 +01:00
parent 7653c3117e
commit 74c97a512f
2 changed files with 2 additions and 2 deletions

View File

@ -222,7 +222,7 @@ void logger_stop(void) {
logger_alive = 0;
}
void logger(void) {
void logger_thread(void) {
if (logger_init() != 0)
return;

View File

@ -33,7 +33,7 @@ void logger_set_name(const char *restrict name);
void logger_set_prefix(const char *restrict prefix);
void logger(void);
void logger_thread(void);
void logger_stop(void);