]> git.ipfire.org Git - thirdparty/util-linux.git/commitdiff
Make scols_column_set_data_func docs visible
authorFeRD (Frank Dana) <ferdnyc@gmail.com>
Mon, 9 Jun 2025 08:55:00 +0000 (04:55 -0400)
committerFeRD (Frank Dana) <ferdnyc@gmail.com>
Mon, 9 Jun 2025 08:55:00 +0000 (04:55 -0400)
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) <ferdnyc@gmail.com>
libsmartcols/src/column.c

index 8c4621c94a8daf80f8277c986676d57f4d948c17..e83d297fc5ea9e2b358d83517e93a78f5ef43707 100644 (file)
@@ -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().
  *