summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlejandro Colomar <alx@kernel.org>2023-04-11 16:55:17 +0200
committerAlejandro Colomar <alx@kernel.org>2023-04-11 16:55:42 +0200
commit121c8de01732bc36daea563edf5764bd3f0f8720 (patch)
tree202ef837d08e4af14e7fa093c43f89f017c45e48
parent74d9f80a0b013aea4e134311d63c3406eae389b8 (diff)
fts.3: SYNOPSIS: Fix nullability
Reported-by: Ahelenia ZiemiaƄska <nabijaczleweli@nabijaczleweli.xyz> Signed-off-by: Alejandro Colomar <alx@kernel.org>
-rw-r--r--man3/fts.34
1 files changed, 2 insertions, 2 deletions
diff --git a/man3/fts.3 b/man3/fts.3
index 49a8507e7..523ad6f9e 100644
--- a/man3/fts.3
+++ b/man3/fts.3
@@ -23,8 +23,8 @@ Standard C library
.B #include <sys/stat.h>
.B #include <fts.h>
.PP
-.BI "FTS *fts_open(char * const *" path_argv ", int " options ,
-.BI " int (*" compar ")(const FTSENT **, const FTSENT **));"
+.BI "FTS *fts_open(char *const *" path_argv ", int " options ,
+.BI " int (*_Nullable " compar ")(const FTSENT **, const FTSENT **));"
.PP
.BI "FTSENT *fts_read(FTS *" ftsp );
.PP