summaryrefslogtreecommitdiff
path: root/e2fsck/revoke.c
diff options
context:
space:
mode:
authorTheodore Ts'o <tytso@mit.edu>2001-03-29 19:16:44 +0000
committerTheodore Ts'o <tytso@mit.edu>2001-03-29 19:16:44 +0000
commit78eccb85b8889362f5f64fe1d1bf91f4d6ee3fc1 (patch)
treee3d1f963b283879ab55a100451fdcda601f42f2d /e2fsck/revoke.c
parent1f73503816829b0362957798fbb8cd355337dc6a (diff)
downloade2fsprogs-78eccb85b8889362f5f64fe1d1bf91f4d6ee3fc1.tar.gz
revoke.c:
Make insert_revoke_hash static (since it's not used outside this function).
Diffstat (limited to 'e2fsck/revoke.c')
-rw-r--r--e2fsck/revoke.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/e2fsck/revoke.c b/e2fsck/revoke.c
index 5e98f51a..28f8fa29 100644
--- a/e2fsck/revoke.c
+++ b/e2fsck/revoke.c
@@ -114,7 +114,8 @@ static inline int hash(journal_t *journal, unsigned long block)
(block << (hash_shift - 12))) & (table->hash_size - 1);
}
-int insert_revoke_hash(journal_t *journal, unsigned long blocknr, tid_t seq)
+static int insert_revoke_hash(journal_t *journal,
+ unsigned long blocknr, tid_t seq)
{
struct list_head *hash_list;
struct jfs_revoke_record_s *record;