Fix signed/unsigned comparison warnings from GCC 3.3.

This commit is contained in:
thorpej 2002-08-25 23:16:39 +00:00
parent 4d94adc849
commit 88e741999d
1 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: sys_pipe.c,v 1.25 2002/03/17 19:41:07 atatat Exp $ */
/* $NetBSD: sys_pipe.c,v 1.26 2002/08/25 23:16:39 thorpej Exp $ */
/*
* Copyright (c) 1996 John S. Dyson
@ -58,7 +58,7 @@
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: sys_pipe.c,v 1.25 2002/03/17 19:41:07 atatat Exp $");
__KERNEL_RCSID(0, "$NetBSD: sys_pipe.c,v 1.26 2002/08/25 23:16:39 thorpej Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@ -1303,7 +1303,7 @@ pipe_write(fp, offset, uio, cred, flags)
#endif
while (uio->uio_resid) {
int space;
size_t space;
#ifndef PIPE_NODIRECT
/*