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/swapon.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'sys-utils/swapon.c') diff --git a/sys-utils/swapon.c b/sys-utils/swapon.c index a3cfbabc8..3866ee70d 100644 --- a/sys-utils/swapon.c +++ b/sys-utils/swapon.c @@ -239,12 +239,12 @@ static int show_table(int bytes) if (!itr) err(EXIT_FAILURE, _("failed to initialize libmount iterator")); - table = scols_new_table(NULL); + table = scols_new_table(); if (!table) err(EXIT_FAILURE, _("failed to initialize output table")); - scols_table_set_raw(table, raw); - scols_table_set_no_headings(table, no_headings); + scols_table_enable_raw(table, raw); + scols_table_enable_noheadings(table, no_headings); for (i = 0; i < ncolumns; i++) { struct colinfo *col = get_column_info(i); -- cgit v1.2.3-55-g7522