From c173ba11ec3b3c537a5e853298dff17e04c3df80 Mon Sep 17 00:00:00 2001 From: Karel Zak Date: Wed, 10 Mar 2021 11:30:53 +0100 Subject: [PATCH] libsmartcols: add comments to private header file Signed-off-by: Karel Zak --- libsmartcols/src/smartcolsP.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/libsmartcols/src/smartcolsP.h b/libsmartcols/src/smartcolsP.h index 5e9b9ec561..2a3b22672f 100644 --- a/libsmartcols/src/smartcolsP.h +++ b/libsmartcols/src/smartcolsP.h @@ -124,7 +124,7 @@ struct libscols_column { struct libscols_cell header; - struct list_head cl_columns; + struct list_head cl_columns; /* member of table->tb_columns */ struct libscols_table *table; @@ -212,8 +212,8 @@ struct libscols_table { char *colsep; /* column separator */ char *linesep; /* line separator */ - struct list_head tb_columns; - struct list_head tb_lines; + struct list_head tb_columns; /* list of columns, items: column->cl_columns */ + struct list_head tb_lines; /* list of lines; items: line->ln_lines */ struct list_head tb_groups; /* all defined groups */ struct libscols_group **grpset; -- 2.47.3