Ported configuration manager to Allegro GUI
This commit is contained in:
parent
aad1179e47
commit
d2245f2d45
17 changed files with 500 additions and 143 deletions
|
|
@ -14,7 +14,7 @@ thread_t *thread_create(void (*thread_rout)(void *param), void *param)
|
|||
{
|
||||
pthread_t *thread = malloc(sizeof(pthread_t));
|
||||
|
||||
pthread_create(thread, NULL, thread_rout, param);
|
||||
pthread_create(thread, NULL, (void *)thread_rout, param);
|
||||
|
||||
return thread;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue