Fix incorrect krw_type_t type

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’
This commit is contained in:
Brian Behlendorf 2010-11-08 21:32:47 -08:00 committed by Brian Behlendorf
parent c11908c75d
commit 1e18307b61
1 changed files with 1 additions and 1 deletions

View File

@ -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 {