diff options
Diffstat (limited to 'src/chmtx.c')
-rw-r--r-- | src/chmtx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/chmtx.c b/src/chmtx.c index ea3ccccda..25a490b98 100644 --- a/src/chmtx.c +++ b/src/chmtx.c @@ -32,7 +32,7 @@ */ void chMtxInit(Mutex *mp) { - fifo_init(&mp->m_queue); + queue_init(&mp->m_queue); mp->m_owner = NULL; } |