From e5838fcffd690a2a9f2a81ce955c7128622a9069 Mon Sep 17 00:00:00 2001 From: leo Date: Sun, 26 Mar 1995 07:17:44 +0000 Subject: [PATCH] cgd for leo: kill some casts; catch up with the state of the rest of the world --- sys/arch/atari/include/param.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sys/arch/atari/include/param.h b/sys/arch/atari/include/param.h index e32afe724a0c..5922a100ac85 100644 --- a/sys/arch/atari/include/param.h +++ b/sys/arch/atari/include/param.h @@ -1,4 +1,4 @@ - /* $NetBSD: param.h,v 1.1.1.1 1995/03/26 07:12:07 leo Exp $ */ + /* $NetBSD: param.h,v 1.2 1995/03/26 07:17:44 leo Exp $ */ /* * Copyright (c) 1988 University of Utah. @@ -127,9 +127,9 @@ #define btoc(x) (((unsigned)(x)+(NBPG-1))>>PGSHIFT) #define btodb(bytes) /* calculates (bytes / DEV_BSIZE) */ \ - ((unsigned)(bytes) >> DEV_BSHIFT) + ((bytes) >> DEV_BSHIFT) #define dbtob(db) /* calculates (db * DEV_BSIZE) */ \ - ((unsigned)(db) << DEV_BSHIFT) + ((db) << DEV_BSHIFT) /* * Map a ``block device block'' to a file system block.