lkml.org 
[lkml]   [2012]   [Jul]   [11]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
Date
From
Subject[PATCH] fs/ioctl.c: set local var past_eof to true instead of integer 1 in __generic_block_fiemap
In function __generic_block_fiemap, local var past_eof is declared
as bool, so use 'true' instead of number 1 here.

Signed-off-by: Wang Sheng-Hui <shhuiw@gmail.com>
---
fs/ioctl.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/fs/ioctl.c b/fs/ioctl.c
index 29167be..e42abb0 100644
--- a/fs/ioctl.c
+++ b/fs/ioctl.c
@@ -308,7 +308,7 @@ int __generic_block_fiemap(struct inode *inode,
*/
if (!past_eof &&
blk_to_logical(inode, start_blk) >= isize)
- past_eof = 1;
+ past_eof = true;

/*
* First hole after going past the EOF, this is our
--
1.7.1


\
 
 \ /
  Last update: 2012-07-11 09:23    [W:0.025 / U:0.544 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site