This patch makes the needlessly global udf_error() static.

Signed-off-by: Adrian Bunk <bunk@kernel.org>
Signed-off-by: Jan Kara <jack@suse.cz>
This commit is contained in:
Adrian Bunk 2008-02-17 10:19:55 +02:00 коммит произвёл Jan Kara
Родитель 8dee00bb75
Коммит b8145a7697
2 изменённых файлов: 4 добавлений и 3 удалений

Просмотреть файл

@ -99,6 +99,8 @@ static void udf_close_lvid(struct super_block *);
static unsigned int udf_count_free(struct super_block *);
static int udf_statfs(struct dentry *, struct kstatfs *);
static int udf_show_options(struct seq_file *, struct vfsmount *);
static void udf_error(struct super_block *sb, const char *function,
const char *fmt, ...);
struct logicalVolIntegrityDescImpUse *udf_sb_lvidiu(struct udf_sb_info *sbi)
{
@ -1867,8 +1869,8 @@ error_out:
return -EINVAL;
}
void udf_error(struct super_block *sb, const char *function,
const char *fmt, ...)
static void udf_error(struct super_block *sb, const char *function,
const char *fmt, ...)
{
va_list args;

Просмотреть файл

@ -102,7 +102,6 @@ struct extent_position {
};
/* super.c */
extern void udf_error(struct super_block *, const char *, const char *, ...);
extern void udf_warning(struct super_block *, const char *, const char *, ...);
/* namei.c */