public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/1] fs/xfs/xfs_log.c: Fix comparison to bool
@ 2014-04-13 20:09 Fabian Frederick
  2014-04-16 22:15 ` Andrew Morton
  0 siblings, 1 reply; 4+ messages in thread
From: Fabian Frederick @ 2014-04-13 20:09 UTC (permalink / raw)
  To: linux-kernel; +Cc: hch, akpm

Fixing coccinelle warning

Cc: Christoph Hellwig <hch@infradead.org>
Cc: Andrew Morton <akpm@linux-foundation.org> 
Signed-off-by: Fabian Frederick <fabf@skynet.be>
---
 fs/xfs/xfs_log.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/fs/xfs/xfs_log.c b/fs/xfs/xfs_log.c
index 8497a00..efb8f92 100644
--- a/fs/xfs/xfs_log.c
+++ b/fs/xfs/xfs_log.c
@@ -2376,7 +2376,7 @@ next_lv:
 				if (lv)
 					vecp = lv->lv_iovecp;
 			}
-			if (record_cnt == 0 && ordered == false) {
+			if (record_cnt == 0 && !ordered) {
 				if (!lv)
 					return 0;
 				break;
-- 
1.8.3.2


^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2014-04-23  1:58 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-04-13 20:09 [PATCH 1/1] fs/xfs/xfs_log.c: Fix comparison to bool Fabian Frederick
2014-04-16 22:15 ` Andrew Morton
2014-04-16 22:47   ` Joe Perches
2014-04-23  1:58   ` Dave Chinner

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox