diff options
author | Rob Landley | 2006-05-19 22:42:23 +0000 |
---|---|---|
committer | Rob Landley | 2006-05-19 22:42:23 +0000 |
commit | 206f75784b8e87e44b16be733be1d79e55c38ea8 (patch) | |
tree | 8abf4783cb258247baf4dfcfa3f37a460c823252 /e2fsprogs/e2fsck.c | |
parent | 19d42df206c87c915fe736578dae390168624050 (diff) | |
download | busybox-206f75784b8e87e44b16be733be1d79e55c38ea8.zip busybox-206f75784b8e87e44b16be733be1d79e55c38ea8.tar.gz |
Remove unused function parameter, from Garrett.
Diffstat (limited to 'e2fsprogs/e2fsck.c')
-rw-r--r-- | e2fsprogs/e2fsck.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/e2fsprogs/e2fsck.c b/e2fsprogs/e2fsck.c index c169ed4..6f3fd7e 100644 --- a/e2fsprogs/e2fsck.c +++ b/e2fsprogs/e2fsck.c @@ -2891,7 +2891,7 @@ static void mark_inode_bad(e2fsck_t ctx, ino_t ino); static void handle_fs_bad_blocks(e2fsck_t ctx); static void process_inodes(e2fsck_t ctx, char *block_buf); static int process_inode_cmp(const void *a, const void *b); -static errcode_t scan_callback(ext2_filsys fs, ext2_inode_scan scan, +static errcode_t scan_callback(ext2_filsys fs, dgrp_t group, void * priv_data); static void adjust_extattr_refcount(e2fsck_t ctx, ext2_refcount_t refcount, char *block_buf, int adjust_sign); @@ -3721,7 +3721,6 @@ endit: * glock group, call process_inodes. */ static errcode_t scan_callback(ext2_filsys fs, - ext2_inode_scan scan FSCK_ATTR((unused)), dgrp_t group, void * priv_data) { struct scan_callback_struct *scan_struct; |