Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 125908
b: refs/heads/master
c: dad7d97
h: refs/heads/master
v: v3
  • Loading branch information
Mark Fasheh committed Jan 5, 2009
1 parent 014e424 commit be38bee
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: a641dc2a5a1445eb4cb491080dfc41c42a9eb37d
refs/heads/master: dad7d975e4bd893c79fd122105b37b9a1776816a
2 changes: 1 addition & 1 deletion trunk/fs/ocfs2/quota_global.c
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ ssize_t ocfs2_quota_read(struct super_block *sb, int type, char *data,
len = i_size - off;
toread = len;
while (toread > 0) {
tocopy = min((size_t)(sb->s_blocksize - offset), toread);
tocopy = min_t(size_t, (sb->s_blocksize - offset), toread);
bh = NULL;
err = ocfs2_read_quota_block(gqinode, blk, &bh);
if (err) {
Expand Down

0 comments on commit be38bee

Please sign in to comment.