diff --git a/sys/sys/pipe.h b/sys/sys/pipe.h index c9f222ffb01a..4580e1e2726d 100644 --- a/sys/sys/pipe.h +++ b/sys/sys/pipe.h @@ -74,8 +74,8 @@ struct pipebuf { * Information to support direct transfers between processes for pipes. */ struct pipemapping { - vm_size_t cnt; /* number of chars in buffer */ - vm_size_t pos; /* current position of transfer */ + u_int cnt; /* number of chars in buffer */ + u_int pos; /* current position of transfer */ int npages; /* number of pages */ vm_page_t ms[PIPENPAGES]; /* pages in source process */ };