Fix: make static pthread mutecies actually use static storage class

This commit is contained in:
kamkow1
2025-06-25 02:47:29 +02:00
parent 06574d86c9
commit 4254c66aa3
3 changed files with 4 additions and 4 deletions

4
main.c
View File

@ -17,8 +17,8 @@
#include "clonestr.h"
#include "locked.h"
locked(Route *) route_hashtable = locked_init(nil);
locked(char *) etc_dump_path = locked_init(nil);
static locked(Route *) route_hashtable = locked_init(nil);
static locked(char *) etc_dump_path = locked_init(nil);
void run_in_thread(void *(*f)(void *), void *p)
{