Warning fix.

This commit is contained in:
David Given 2022-07-16 17:58:15 +02:00
parent f15075f9a4
commit 81d706ff38

View file

@ -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;