diff --git a/ChangeLog b/ChangeLog index 9cd4ba0b1..add903129 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2000-07-31 Pavel Roskin + + * grub/asmstub.c (biosdisk) [__linux__]: The first argument for + _llseek renamed from "seeked_fd" to "filedes". + 2000-07-30 OKUJI Yoshinori * docs/appendices.texi (FAQ): Added the answer for the separate diff --git a/grub/asmstub.c b/grub/asmstub.c index 5fe0dd1f1..fe0f44ce1 100644 --- a/grub/asmstub.c +++ b/grub/asmstub.c @@ -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;