The first argument for _llseek renamed from "seeked_fd" to "filedes"

This commit is contained in:
proski 2000-07-31 04:41:23 +00:00
parent 520ec8572d
commit b6092dd0ea
2 changed files with 7 additions and 2 deletions

View file

@ -1,3 +1,8 @@
2000-07-31 Pavel Roskin <proski@gnu.org>
* grub/asmstub.c (biosdisk) [__linux__]: The first argument for
_llseek renamed from "seeked_fd" to "filedes".
2000-07-30 OKUJI Yoshinori <okuji@gnu.org>
* docs/appendices.texi (FAQ): Added the answer for the separate

View file

@ -748,9 +748,9 @@ biosdisk (int subfunc, int drive, struct geometry *geometry,
/* Maybe libc doesn't have large file support. */
{
loff_t offset, result;
static int _llseek (uint seeked_fd, ulong hi, ulong lo,
static int _llseek (uint filedes, ulong hi, ulong lo,
loff_t *res, uint wh);
_syscall5 (int, _llseek, uint, seeked_fd, ulong, hi, ulong, lo,
_syscall5 (int, _llseek, uint, filedes, ulong, hi, ulong, lo,
loff_t *, res, uint, wh);
offset = (loff_t) sector * (loff_t) SECTOR_SIZE;