Re: Ok, making ready for pre-2.4 and code-freeze..

Rogier Wolff (R.E.Wolff@BitWizard.nl)
Tue, 21 Dec 1999 10:35:37 +0100 (MET)


> mmap64(...)
> {
> if (offset & 0xfff)
> return -EINVAL;

You meant

if (offset & 0xfff) {
errno = EINVAL;
return -1;
}

right?

Roger.

-- 
** R.E.Wolff@BitWizard.nl ** http://www.BitWizard.nl/ ** +31-15-2137555 **
*-- BitWizard writes Linux device drivers for any device you may have! --*
 "I didn't say it was your fault. I said I was going to blame it on you."

- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.rutgers.edu Please read the FAQ at http://www.tux.org/lkml/