diff mbox series

fs: buffer: use true and false for boolean values

Message ID 20180802004714.GA25422@embeddedor.com (mailing list archive)
State New, archived
Headers show
Series fs: buffer: use true and false for boolean values | expand

Commit Message

Gustavo A. R. Silva Aug. 2, 2018, 12:47 a.m. UTC
Return statements in functions returning bool should use true or false
instead of an integer value.

This issue was detected with the help of Coccinelle.

Signed-off-by: Gustavo A. R. Silva <gustavo@embeddedor.com>
---
 fs/buffer.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
diff mbox series

Patch

diff --git a/fs/buffer.c b/fs/buffer.c
index ebf78ab..bef8ade 100644
--- a/fs/buffer.c
+++ b/fs/buffer.c
@@ -1415,10 +1415,10 @@  static bool has_bh_in_lru(int cpu, void *dummy)
 	
 	for (i = 0; i < BH_LRU_SIZE; i++) {
 		if (b->bhs[i])
-			return 1;
+			return true;
 	}
 
-	return 0;
+	return false;
 }
 
 void invalidate_bh_lrus(void)