• R/O
  • HTTP
  • SSH
  • HTTPS

提交

標籤
無標籤

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

Commit MetaInfo

修訂1f5f75423a38d16043ef2da729c44f321b31dfb3 (tree)
時間2016-04-17 18:04:11
作者Yoshinori Sato <ysato@user...>
CommiterYoshinori Sato

Log Message

ext4: fix variable type.

Signed-off-by: Yoshinori Sato <ysato@users.sourceforge.jp>

Change Summary

差異

--- a/fs/ext4/ext4fs.c
+++ b/fs/ext4/ext4fs.c
@@ -71,7 +71,7 @@ int ext4fs_read_file(struct ext2fs_node *node, loff_t pos,
7171 blockcnt = lldiv(((len + pos) + blocksize - 1), blocksize);
7272
7373 for (i = lldiv(pos, blocksize); i < blockcnt; i++) {
74- lbaint_t blknr;
74+ long long int blknr;
7575 int blockoff = pos - (blocksize * i);
7676 int blockend = blocksize;
7777 int skipfirst = 0;