diff --git a/sys/fs/vfs/file.c b/sys/fs/vfs/file.c index 334353d..ff9b1c0 100644 --- a/sys/fs/vfs/file.c +++ b/sys/fs/vfs/file.c @@ -332,8 +332,7 @@ return (res); } -int fseek(fileDescriptor_t *tmpFd, long offset, int whence) { - kprintf("[%s:%i] Am I Using This Fucntion Anywhere?!?!?!"); +int fseek(fileDescriptor_t *tmpFd, u_int32_t offset, int whence) { tmpFd->offset = offset + whence; return (tmpFd->offset); }