From d341ed5693decdc0ae3cd948ba8f82fd5c627668 Mon Sep 17 00:00:00 2001 From: Michael Kerrisk Date: Mon, 28 Aug 2017 23:12:48 +0200 Subject: [PATCH] fcntl.2: Correct argument type for read-write hints Reported-by: Florian Weimer Signed-off-by: Michael Kerrisk --- man2/fcntl.2 | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/man2/fcntl.2 b/man2/fcntl.2 index 37cf5a333..511b6eb79 100644 --- a/man2/fcntl.2 +++ b/man2/fcntl.2 @@ -1516,22 +1516,22 @@ in arbitrary ways, so long as the hints are used consistently. The following operations can be applied to the file descriptor, .IR fd : .TP -.BR F_GET_RW_HINT " (\fIuint64_t\fP; since Linux 4.13)" +.BR F_GET_RW_HINT " (\fIuint64_t *\fP; since Linux 4.13)" Returns the value of the read/write hint associated with the underlying inode referred to by .IR fd . .TP -.BR F_SET_RW_HINT " (\fIuint64_t\fP; since Linux 4.13)" +.BR F_SET_RW_HINT " (\fIuint64_t *\fP; since Linux 4.13)" Sets the read/write hint value associated with the underlying inode referred to by .IR fd . .TP -.BR F_GET_FILE_RW_HINT " (\fIuint64_t\fP; since Linux 4.13)" +.BR F_GET_FILE_RW_HINT " (\fIuint64_t *\fP; since Linux 4.13)" Returns the value of the read/write hint associated with the open file description referred to by .IR fd . .TP -.BR F_SET_FILE_RW_HINT " (\fIuint64_t\fP; since Linux 4.13)" +.BR F_SET_FILE_RW_HINT " (\fIuint64_t *\fP; since Linux 4.13)" Sets the read/write hint value associated with the open file description referred to by .IR fd .