From 7c42625da49c0c74da2f4765b20cecd0e3157755 Mon Sep 17 00:00:00 2001 From: perry Date: Sat, 2 Nov 2002 07:09:23 +0000 Subject: [PATCH] define KERNBASE with a UL -- eliminates 830 or so lines of lint. --- sys/arch/i386/include/param.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/arch/i386/include/param.h b/sys/arch/i386/include/param.h index bc85df00db32..74cbb0aadbe1 100644 --- a/sys/arch/i386/include/param.h +++ b/sys/arch/i386/include/param.h @@ -1,4 +1,4 @@ -/* $NetBSD: param.h,v 1.50 2002/10/06 12:37:12 fvdl Exp $ */ +/* $NetBSD: param.h,v 1.51 2002/11/02 07:09:23 perry Exp $ */ /*- * Copyright (c) 1990 The Regents of the University of California. @@ -80,7 +80,7 @@ #define PGOFSET (NBPG-1) /* byte offset into page */ #define NPTEPG (NBPG/(sizeof (pt_entry_t))) -#define KERNBASE 0xc0000000 /* start of kernel virtual space */ +#define KERNBASE 0xc0000000UL /* start of kernel virtual space */ #define KERNTEXTOFF (KERNBASE + 0x100000) /* start of kernel text */ #define BTOPKERNBASE ((u_long)KERNBASE >> PGSHIFT)