Revert "Merge pull request 'Fix logic/correctness bugs (#73, #68, #67, #66, #59, #58, #54, #48, #53)' (#82) from fix/logic-correctness into main"

This reverts commit 28d076fc28, reversing
changes made to df0f52ce39.
This commit is contained in:
2026-07-20 19:36:09 +02:00
parent 6831e7e6fb
commit e6e8679bfc
9 changed files with 55 additions and 159 deletions
+1 -1
View File
@@ -10,7 +10,7 @@ void set_log_level(LogLevel level) {
current_log_level = level;
}
void log_message(LogLevel log_level, const char* format, ...) {
void log_message(LogLevel log_level, char* format, ...) {
if (log_level < current_log_level)
return;
time_t now = time(NULL);