diff options
author | Al Viro <viro@ftp.linux.org.uk> | 2007-10-14 14:35:50 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-10-14 15:41:52 -0400 |
commit | 5ba253313d014364a9b87b6fa975ce2fc9759aa6 (patch) | |
tree | b6f7b222b980d7a28e8d73d6cf939454a77205b1 /fs/jfs/jfs_dtree.c | |
parent | b4482a4b2e2ff5ed96d8d16d72e83e75064062c5 (diff) |
more low-hanging fruits - kernel, fs, lib signedness
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs/jfs/jfs_dtree.c')
-rw-r--r-- | fs/jfs/jfs_dtree.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/jfs/jfs_dtree.c b/fs/jfs/jfs_dtree.c index c14ba3cfa818..df0b8535de84 100644 --- a/fs/jfs/jfs_dtree.c +++ b/fs/jfs/jfs_dtree.c | |||
@@ -520,7 +520,7 @@ static void free_index(tid_t tid, struct inode *ip, u32 index, u32 next) | |||
520 | * Changes an entry in the directory index table | 520 | * Changes an entry in the directory index table |
521 | */ | 521 | */ |
522 | static void modify_index(tid_t tid, struct inode *ip, u32 index, s64 bn, | 522 | static void modify_index(tid_t tid, struct inode *ip, u32 index, s64 bn, |
523 | int slot, struct metapage ** mp, u64 *lblock) | 523 | int slot, struct metapage ** mp, s64 *lblock) |
524 | { | 524 | { |
525 | struct dir_table_slot *dirtab_slot; | 525 | struct dir_table_slot *dirtab_slot; |
526 | 526 | ||