diff options
author | Tom Rini <trini@konsulko.com> | 2025-06-09 16:28:28 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2025-06-09 16:28:28 -0600 |
commit | 59d00e20fced23e6463aa09db889dd548baee677 (patch) | |
tree | 2502afc87e22058b3efd0a5c3d878e62ba52e96e /fs/ext4/ext4fs.c | |
parent | 865130b7308453b9436942f01cc4481124b820eb (diff) | |
parent | d7c449c3d83a986d61e38d1762433c0607caf5c5 (diff) |
Merge tag 'v2025.07-rc4' into next
Prepare v2025.07-rc4
Diffstat (limited to 'fs/ext4/ext4fs.c')
-rw-r--r-- | fs/ext4/ext4fs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ext4/ext4fs.c b/fs/ext4/ext4fs.c index 51944b61bd0..bd058a09614 100644 --- a/fs/ext4/ext4fs.c +++ b/fs/ext4/ext4fs.c @@ -102,7 +102,7 @@ int ext4fs_read_file(struct ext2fs_node *node, loff_t pos, blockcnt = lldiv(((len + pos) + blocksize - 1), blocksize); for (i = lldiv(pos, blocksize); i < blockcnt; i++) { - lbaint_t blknr; + long int blknr; int blockoff = pos - (blocksize * i); int blockend = blocksize; int skipfirst = 0; |