From 30dd789f40370856b8cd08493ab51a9747d6a822 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Antonio=20Hern=C3=A1ndez=20C=C3=A1novas?= Date: Fri, 24 Aug 2018 15:43:33 +0200 Subject: [PATCH] more typos --- nx/source/kernel/rwlock.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nx/source/kernel/rwlock.c b/nx/source/kernel/rwlock.c index cb024425..962dd0ca 100644 --- a/nx/source/kernel/rwlock.c +++ b/nx/source/kernel/rwlock.c @@ -3,8 +3,8 @@ #include "kernel/rwlock.h" void rwlockInit(RwLock* r) { - rmutexInit(r->r); - rmutexInit(r->g); + rmutexInit(&r->r); + rmutexInit(&r->g); r->b = 0; }