From ec68d1f1d34e814842503af0ee9f445bcbb464ad Mon Sep 17 00:00:00 2001 From: Zachary Lebold Date: Mon, 7 Mar 2016 02:15:45 -0500 Subject: [PATCH] Update lseek.html Fix references to "fd" as file descriptor, instead of file handle. --- man/syscall/lseek.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/man/syscall/lseek.html b/man/syscall/lseek.html index 0c3c407..61805aa 100644 --- a/man/syscall/lseek.html +++ b/man/syscall/lseek.html @@ -57,8 +57,8 @@ int whence);

Description

lseek alters the current seek position of the file handle -filehandle, seeking to a new position based on pos -and whence. +identified by file descriptor fd, seeking to a new position +based on pos and whence.

@@ -122,7 +122,7 @@ mentioned here.   EBADF fd is not a valid file - handle. + descriptor. ESPIPE fd refers to an object which does not support seeking. EINVAL whence is invalid.