From: Karel Zak Date: Tue, 6 Sep 2016 10:24:49 +0000 (+0200) Subject: libsmartcols: remove debuging code from sample X-Git-Tag: v2.29-rc1~75 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=4f07ff4041de76fa6acfefac06c500aea710f290;p=thirdparty%2Futil-linux.git libsmartcols: remove debuging code from sample Signed-off-by: Karel Zak --- diff --git a/libsmartcols/samples/wrapnl.c b/libsmartcols/samples/wrapnl.c index eca100f104..6de9e08a6f 100644 --- a/libsmartcols/samples/wrapnl.c +++ b/libsmartcols/samples/wrapnl.c @@ -70,17 +70,13 @@ static struct libscols_line * add_line( struct libscols_table *tb, if (!ln) err(EXIT_FAILURE, "failed to create output line"); -static int x = 0; - if (scols_line_set_data(ln, COL_NAME, gen_text(prefix, "N", buf, 15, 0))) goto fail; - if (scols_line_set_data(ln, COL_DATA, gen_text(prefix, "F", buf, x % 2 ? 40 : 5, x % 2 ? 1 : 0))) + if (scols_line_set_data(ln, COL_DATA, gen_text(prefix, "F", buf, 40, 1))) goto fail; if (scols_line_set_data(ln, COL_LIKE, "1")) goto fail; -x++; - return ln; fail: scols_unref_table(tb);