From 1e18307b6109a5b2491cd519a312b870b2e7522b Mon Sep 17 00:00:00 2001 From: Brian Behlendorf Date: Mon, 8 Nov 2010 21:32:47 -0800 Subject: [PATCH] Fix incorrect krw_type_t type MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Flagged by the default compile options on archlinux 2010.05, we should be using the krw_t type not the krw_type_t type in the private data. module/splat/splat-rwlock.c: In function ‘splat_rwlock_test4_func’: module/splat/splat-rwlock.c:432:6: warning: case value ‘1’ not in enumerated type ‘krw_type_t’ --- module/splat/splat-rwlock.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/splat/splat-rwlock.c b/module/splat/splat-rwlock.c index dc560c2b9c..2b9dee939e 100644 --- a/module/splat/splat-rwlock.c +++ b/module/splat/splat-rwlock.c @@ -73,7 +73,7 @@ typedef struct rw_priv { int rw_waiters; int rw_release; int rw_rc; - krw_type_t rw_type; + krw_t rw_type; } rw_priv_t; typedef struct rw_thr {