From: Eric Paris Date: Thu, 11 Jun 2009 15:09:47 +0000 (-0400) Subject: dnotify: do not use ?true:false when assigning to a bool X-Git-Tag: v3.0~9022^2~3 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=5ac697b793a3c45005c568df692518da6e690390;p=platform%2Fkernel%2Flinux-amlogic.git dnotify: do not use ?true:false when assigning to a bool 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 --- diff --git a/fs/notify/dnotify/dnotify.c b/fs/notify/dnotify/dnotify.c index 12f9e6b..5134e89 100644 --- 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 */