Use u_int for variable manipulated by atomic ops to match atomic

ops function prototypes.
This commit is contained in:
Alexander Kabaev 2007-04-03 18:28:13 +00:00
parent 802d9610eb
commit fb6395da91
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=168311

View File

@ -54,7 +54,7 @@
#define RC_INCR 0x2 /* Adjusts count of readers desiring lock */
typedef struct Struct_Lock {
volatile int lock;
volatile u_int lock;
void *base;
} Lock;