Change unsigned foo to u_foo as required by style(9).
Requested by: bde Approved by: ed (mentor)
This commit is contained in:
parent
ce95033db7
commit
1c2825bd80
@ -146,7 +146,7 @@ static int filt_userattach(struct knote *kn);
|
||||
static void filt_userdetach(struct knote *kn);
|
||||
static int filt_user(struct knote *kn, long hint);
|
||||
static void filt_usertouch(struct knote *kn, struct kevent *kev,
|
||||
unsigned long type);
|
||||
u_long type);
|
||||
|
||||
static struct filterops file_filtops = {
|
||||
.f_isfd = 1,
|
||||
@ -617,9 +617,9 @@ filt_user(struct knote *kn, __unused long hint)
|
||||
}
|
||||
|
||||
static void
|
||||
filt_usertouch(struct knote *kn, struct kevent *kev, unsigned long type)
|
||||
filt_usertouch(struct knote *kn, struct kevent *kev, u_long type)
|
||||
{
|
||||
unsigned int ffctrl;
|
||||
u_int ffctrl;
|
||||
|
||||
switch (type) {
|
||||
case EVENT_REGISTER:
|
||||
|
@ -191,8 +191,7 @@ struct filterops {
|
||||
int (*f_attach)(struct knote *kn);
|
||||
void (*f_detach)(struct knote *kn);
|
||||
int (*f_event)(struct knote *kn, long hint);
|
||||
void (*f_touch)(struct knote *kn, struct kevent *kev,
|
||||
unsigned long type);
|
||||
void (*f_touch)(struct knote *kn, struct kevent *kev, u_long type);
|
||||
};
|
||||
|
||||
/*
|
||||
|
Loading…
Reference in New Issue
Block a user