diff options
author | Theodore Ts'o <tytso@mit.edu> | 2009-10-25 21:42:12 -0400 |
---|---|---|
committer | Theodore Ts'o <tytso@mit.edu> | 2009-10-25 21:42:12 -0400 |
commit | cd65a24e756b8f6770a5961fd94c67eb00dd7baa (patch) | |
tree | df9e187fff26d8ebc95f40d9c86062b30630c4bf /debugfs | |
parent | e633b58ac75f2f544b7d6572e37d4b63da31e59c (diff) | |
download | e2fsprogs-cd65a24e756b8f6770a5961fd94c67eb00dd7baa.tar.gz |
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" <tytso@mit.edu>
Diffstat (limited to 'debugfs')
-rw-r--r-- | debugfs/debugfs.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; |