From 0925a9dd6cd65feb8cb2d4d66551363f4af161e9 Mon Sep 17 00:00:00 2001 From: Karel Zak Date: Thu, 3 Apr 2014 16:09:57 +0200 Subject: libsmartcols: clean up flags usage * rename flags functions to scols_table_enable_* * rename *_no_foo() functions to _nofoo() * output formats are mutually exclusive, so don't use flags there * don't assume symbols in scols_new_table(), use scols_table_set_symbols() Signed-off-by: Karel Zak --- sys-utils/losetup.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'sys-utils/losetup.c') diff --git a/sys-utils/losetup.c b/sys-utils/losetup.c index 58d3e08a4..85a15ac2f 100644 --- a/sys-utils/losetup.c +++ b/sys-utils/losetup.c @@ -298,10 +298,10 @@ static int show_table(struct loopdev_cxt *lc, struct libscols_line *ln; int i, rc = 0; - if (!(tb = scols_new_table(NULL))) + if (!(tb = scols_new_table())) err(EXIT_FAILURE, _("failed to initialize output table")); - scols_table_set_raw(tb, raw); - scols_table_set_no_headings(tb, no_headings); + scols_table_enable_raw(tb, raw); + scols_table_enable_noheadings(tb, no_headings); for (i = 0; i < ncolumns; i++) { struct colinfo *ci = get_column_info(i); -- cgit v1.2.3-55-g7522