From cd65a24e756b8f6770a5961fd94c67eb00dd7baa Mon Sep 17 00:00:00 2001 From: Theodore Ts'o Date: Sun, 25 Oct 2009 21:42:12 -0400 Subject: libext2fs: Convert ext2fs_bg_flag_test() to ext2fs_bg_flags_test() After cleaning up ext2fs_bg_flag_set() and ext2fs_bg_flag_clear(), we're left with ext2fs_bg_flag_test(). Convert it to ext2fs_bg_flags_test(). Signed-off-by: "Theodore Ts'o" --- debugfs/debugfs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'debugfs') diff --git a/debugfs/debugfs.c b/debugfs/debugfs.c index e3fb5f30..8e0dc55d 100644 --- a/debugfs/debugfs.c +++ b/debugfs/debugfs.c @@ -293,7 +293,7 @@ static void print_features(struct ext2_super_block * s, FILE *f) static void print_bg_opts(ext2_filsys fs, dgrp_t group, int mask, const char *str, int *first, FILE *f) { - if (ext2fs_bg_flag_test(fs, group, mask)) { + if (ext2fs_bg_flags_test(fs, group, mask)) { if (*first) { fputs(" [", f); *first = 0; -- cgit v1.2.3