From: Theodore Ts'o Date: Thu, 29 Mar 2001 19:16:44 +0000 (+0000) Subject: revoke.c: X-Git-Tag: E2FSPROGS-1_20~93 X-Git-Url: https://git.whamcloud.com/gitweb?a=commitdiff_plain;h=78eccb85b8889362f5f64fe1d1bf91f4d6ee3fc1;p=tools%2Fe2fsprogs.git revoke.c: Make insert_revoke_hash static (since it's not used outside this function). --- diff --git a/e2fsck/revoke.c b/e2fsck/revoke.c index 5e98f51..28f8fa2 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;