Fix signed/unsigned comparison warnings.

This commit is contained in:
thorpej 2002-11-09 19:35:52 +00:00
parent 4d7f6969a5
commit 0c2979d1c8
2 changed files with 6 additions and 6 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: sig_machdep.c,v 1.1 2002/11/09 02:02:34 nisimura Exp $ */
/* $NetBSD: sig_machdep.c,v 1.2 2002/11/09 19:36:29 thorpej Exp $ */
/*
* Copyright 2002 Wasabi Systems, Inc.
@ -120,7 +120,7 @@
#include <sys/cdefs.h> /* RCS ID & Copyright macro defns */
__KERNEL_RCSID(0, "$NetBSD: sig_machdep.c,v 1.1 2002/11/09 02:02:34 nisimura Exp $");
__KERNEL_RCSID(0, "$NetBSD: sig_machdep.c,v 1.2 2002/11/09 19:36:29 thorpej Exp $");
#include "opt_cputype.h"
#include "opt_compat_netbsd.h"
@ -314,7 +314,7 @@ sys___sigreturn14(struct proc *p, void *v, register_t *retval)
if ((error = copyin(scp, &ksc, sizeof(ksc))) != 0)
return (error);
if ((int) ksc.sc_regs[ZERO] != 0xACEDBADE) /* magic number */
if ((u_int) ksc.sc_regs[ZERO] != 0xacedbadeU) /* magic number */
return (EINVAL);
/* Restore the register context. */

View File

@ -1,4 +1,4 @@
/* $NetBSD: vm_machdep.c,v 1.88 2002/03/05 15:57:20 simonb Exp $ */
/* $NetBSD: vm_machdep.c,v 1.89 2002/11/09 19:35:52 thorpej Exp $ */
/*
* Copyright (c) 1988 University of Utah.
@ -45,7 +45,7 @@
#include "opt_ddb.h"
#include <sys/cdefs.h> /* RCS ID & Copyright macro defns */
__KERNEL_RCSID(0, "$NetBSD: vm_machdep.c,v 1.88 2002/03/05 15:57:20 simonb Exp $");
__KERNEL_RCSID(0, "$NetBSD: vm_machdep.c,v 1.89 2002/11/09 19:35:52 thorpej Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@ -363,7 +363,7 @@ kvtophys(kva)
goto overrun;
pte = kvtopte(kva);
if ((pte - Sysmap) > Sysmapsize) {
if ((size_t) (pte - Sysmap) > Sysmapsize) {
printf("oops: Sysmap overrun, max %d index %d\n",
Sysmapsize, pte - Sysmap);
}