mirror of
https://github.com/ZDoom/fluidsynth.git
synced 2024-11-10 15:01:40 +00:00
Use FLUID_MUTEX_INIT instead of G_STATIC_MUTEX_INIT
This commit is contained in:
parent
74122f2d6d
commit
c6a2b0ceba
1 changed files with 1 additions and 1 deletions
|
@ -98,7 +98,7 @@ int fluid_jack_driver_process(jack_nframes_t nframes, void *arg);
|
|||
void delete_fluid_jack_midi_driver(fluid_midi_driver_t *p);
|
||||
|
||||
|
||||
static fluid_mutex_t last_client_mutex = G_STATIC_MUTEX_INIT; /* Probably not necessary, but just in case drivers are created by multiple threads */
|
||||
static fluid_mutex_t last_client_mutex = FLUID_MUTEX_INIT; /* Probably not necessary, but just in case drivers are created by multiple threads */
|
||||
static fluid_jack_client_t *last_client = NULL; /* Last unpaired client. For audio/MIDI driver pairing. */
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue