From bb2a335b357998f8ec0bcaba58cef60ffd7b4ea5 Mon Sep 17 00:00:00 2001 From: David Schultz Date: Sun, 8 Mar 2009 06:14:33 +0000 Subject: [PATCH] Don't declare bin_search() as an inline function, since there's no inline definition of it. --- sys/gnu/fs/reiserfs/reiserfs_fs.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/gnu/fs/reiserfs/reiserfs_fs.h b/sys/gnu/fs/reiserfs/reiserfs_fs.h index b33995fa9fd..3c41563ab0a 100644 --- a/sys/gnu/fs/reiserfs/reiserfs_fs.h +++ b/sys/gnu/fs/reiserfs/reiserfs_fs.h @@ -1216,7 +1216,7 @@ const struct key *get_lkey(const struct path *p_s_chk_path, const struct reiserfs_sb_info *p_s_sbi); const struct key *get_rkey(const struct path *p_s_chk_path, const struct reiserfs_sb_info *p_s_sbi); -inline int bin_search(const void * p_v_key, const void * p_v_base, +int bin_search(const void * p_v_key, const void * p_v_base, int p_n_num, int p_n_width, int * p_n_pos); void pathrelse(struct path *p_s_search_path);