Warning fix.
This commit is contained in:
parent
f15075f9a4
commit
81d706ff38
|
@ -8,10 +8,7 @@
|
|||
#include "system.h"
|
||||
|
||||
int
|
||||
sys_seek(fp, off, whence, poff)
|
||||
File *fp;
|
||||
long off;
|
||||
long *poff;
|
||||
sys_seek(File* fp, long off, int whence, long* poff)
|
||||
{
|
||||
if (! fp) return 0;
|
||||
return (*poff = lseek(fp->o_fd, off, whence)) >= 0;
|
||||
|
|
Loading…
Reference in a new issue