mirror of
https://github.com/libretro/RetroArch
synced 2025-03-03 04:14:00 +00:00
Turn function static
This commit is contained in:
parent
6b1441340c
commit
ae1e9acbaf
@ -45,7 +45,6 @@ struct rarch_task_impl
|
||||
static task_queue_t tasks_running = {NULL, NULL};
|
||||
static task_queue_t tasks_finished = {NULL, NULL};
|
||||
|
||||
|
||||
static void task_queue_put(task_queue_t *queue, rarch_task_t *task)
|
||||
{
|
||||
task->next = NULL;
|
||||
@ -71,7 +70,7 @@ static rarch_task_t *task_queue_get(task_queue_t *queue)
|
||||
return task;
|
||||
}
|
||||
|
||||
void task_msg_queue_pushf(unsigned prio, unsigned duration,
|
||||
static void task_msg_queue_pushf(unsigned prio, unsigned duration,
|
||||
bool flush, const char *fmt, ...)
|
||||
{
|
||||
char buf[1024];
|
||||
|
Loading…
x
Reference in New Issue
Block a user