Message ID | 20200414120201.35242-1-yanaijie@huawei.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | ioctl: use true,false for bool variable 'past_eof' | expand |
diff --git a/fs/ioctl.c b/fs/ioctl.c index 282d45be6f45..9ee11a2bb807 100644 --- a/fs/ioctl.c +++ b/fs/ioctl.c @@ -361,7 +361,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
Fix the following coccicheck warning: fs/ioctl.c:364:4-12: WARNING: Assignment of 0/1 to bool variable Signed-off-by: Jason Yan <yanaijie@huawei.com> --- fs/ioctl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)