From d3a519d2a631196e8c4c0529bdd608f00ad59d6f 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:36:06 +0200 Subject: [PATCH] typo --- nx/source/kernel/rwlock.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nx/source/kernel/rwlock.c b/nx/source/kernel/rwlock.c index e650cbbc..cb024425 100644 --- a/nx/source/kernel/rwlock.c +++ b/nx/source/kernel/rwlock.c @@ -3,7 +3,7 @@ #include "kernel/rwlock.h" void rwlockInit(RwLock* r) { - rmutexInit(r->b); + rmutexInit(r->r); rmutexInit(r->g); r->b = 0; }