diff options
author | Theodore Ts'o <tytso@mit.edu> | 2001-03-29 19:16:44 +0000 |
---|---|---|
committer | Theodore Ts'o <tytso@mit.edu> | 2001-03-29 19:16:44 +0000 |
commit | 78eccb85b8889362f5f64fe1d1bf91f4d6ee3fc1 (patch) | |
tree | e3d1f963b283879ab55a100451fdcda601f42f2d /e2fsck/revoke.c | |
parent | 1f73503816829b0362957798fbb8cd355337dc6a (diff) | |
download | e2fsprogs-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.c | 3 |
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; |