From b64516374f2b2a5976e5657b2d72e0777a7cab39 Mon Sep 17 00:00:00 2001 From: Michael Kerrisk Date: Mon, 8 Aug 2016 03:01:33 +1000 Subject: [PATCH] lseek.2: Order ERRORS alphabetically Signed-off-by: Michael Kerrisk --- man2/lseek.2 | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/man2/lseek.2 b/man2/lseek.2 index 6a5ef6cd2..4509e5a6f 100644 --- a/man2/lseek.2 +++ b/man2/lseek.2 @@ -205,6 +205,14 @@ or beyond the end of a seekable device. .\" Some systems may allow negative offsets for character devices .\" and/or for remote filesystems. .TP +.B ENXIO +.I whence +is +.B SEEK_DATA +or +.BR SEEK_HOLE , +and the file offset is beyond the end of the file. +.TP .B EOVERFLOW .\" HP-UX 11 says EINVAL for this case (but POSIX.1 says EOVERFLOW) The resulting file offset cannot be represented in an @@ -213,14 +221,6 @@ The resulting file offset cannot be represented in an .B ESPIPE .I fd is associated with a pipe, socket, or FIFO. -.TP -.B ENXIO -.I whence -is -.B SEEK_DATA -or -.BR SEEK_HOLE , -and the file offset is beyond the end of the file. .SH CONFORMING TO POSIX.1-2001, POSIX.1-2008, SVr4, 4.3BSD.