The first argument for _llseek renamed from "seeked_fd" to "filedes"
This commit is contained in:
parent
520ec8572d
commit
b6092dd0ea
2 changed files with 7 additions and 2 deletions
|
@ -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
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue