From: FeRD (Frank Dana) Date: Mon, 9 Jun 2025 08:55:00 +0000 (-0400) Subject: Make scols_column_set_data_func docs visible X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=84de06882e925b98b9cf7ffae2a37ae55931894d;p=thirdparty%2Futil-linux.git Make scols_column_set_data_func docs visible The documentation comment for scols_column_set_data_func was missing the second asterisk in its opening marker, causing the contents to be omitted from the rendered documentation. Signed-off-by: FeRD (Frank Dana) --- diff --git a/libsmartcols/src/column.c b/libsmartcols/src/column.c index 8c4621c94..e83d297fc 100644 --- a/libsmartcols/src/column.c +++ b/libsmartcols/src/column.c @@ -672,7 +672,7 @@ int scols_column_get_wrap_data(const struct libscols_column *cl, return 0; } -/* +/** * scols_column_set_data_func: * @cl: a pointer to a struct libscols_column instance * @datafunc: function to return data @@ -682,7 +682,7 @@ int scols_column_get_wrap_data(const struct libscols_column *cl, * for some internal operations (like filters or counters) it needs to convert * the strings to usable data format. If this conversion is not possible then * application can define datafunc() callback to provide data for filters and counters. - + * * The callback needs to return the data as pointer to void, and the data type * is defined by scols_column_set_data_type(). *