Fix cosmetic bug in stale copy of msync_args. 'len' is size_t, not int.

This commit is contained in:
Peter Wemm 2007-10-18 22:47:39 +00:00
parent a0cf818670
commit c899450b21

View File

@ -463,7 +463,7 @@ ommap(td, uap)
#ifndef _SYS_SYSPROTO_H_
struct msync_args {
void *addr;
int len;
size_t len;
int flags;
};
#endif