aboutsummaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
Diffstat (limited to 'sys')
-rw-r--r--sys/sys/pipe.h4
1 files changed, 2 insertions, 2 deletions
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 */
};