projects
/
linux-2.6.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
dnotify: do not use ?true:false when assigning to a bool
[linux-2.6.git]
/
fs
/
notify
/
dnotify
/
dnotify.c
diff --git
a/fs/notify/dnotify/dnotify.c
b/fs/notify/dnotify/dnotify.c
index
12f9e6b
..
5134e89
100644
(file)
--- a/
fs/notify/dnotify/dnotify.c
+++ b/
fs/notify/dnotify/dnotify.c
@@
-154,7
+154,7
@@
static bool dnotify_should_send_event(struct fsnotify_group *group,
return false;
spin_lock(&entry->lock);
- send = (mask & entry->mask) ? true : false;
+ send = (mask & entry->mask);
spin_unlock(&entry->lock);
fsnotify_put_mark(entry); /* matches fsnotify_find_mark_entry */