projects
/
GitHub
/
exynos8895
/
android_kernel_samsung_universal8895.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ff52cc2
)
dnotify: do not use ?true:false when assigning to a bool
author
Eric Paris
<eparis@redhat.com>
Thu, 11 Jun 2009 15:09:47 +0000
(11:09 -0400)
committer
Eric Paris
<eparis@redhat.com>
Thu, 11 Jun 2009 18:57:54 +0000
(14:57 -0400)
dnotify_should send event assigned a bool using ?true:false when computing
a bit operation. This is poitless and the bool type does this for us.
Signed-off-by: Eric Paris <eparis@redhat.com>
fs/notify/dnotify/dnotify.c
patch
|
blob
|
blame
|
history
diff --git
a/fs/notify/dnotify/dnotify.c
b/fs/notify/dnotify/dnotify.c
index 12f9e6b1ffe2b42b5d42ede03d4d71d612a8cf2b..5134e898f60da0cd9d445ae9c25d146662a06260 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 */