From 803c52c2a4ad659a4e0cf2764f4ff9af361b6606 Mon Sep 17 00:00:00 2001 From: oster Date: Mon, 7 Aug 2006 20:02:22 +0000 Subject: sc_size should be a 64-bit quantity. Notice by Matthias Drochner. --- sys/dev/raidframe/rf_netbsdkintf.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'sys/dev/raidframe') diff --git a/sys/dev/raidframe/rf_netbsdkintf.c b/sys/dev/raidframe/rf_netbsdkintf.c index 53c83e4c028..5785dbca476 100644 --- a/sys/dev/raidframe/rf_netbsdkintf.c +++ b/sys/dev/raidframe/rf_netbsdkintf.c @@ -1,4 +1,4 @@ -/* $NetBSD: rf_netbsdkintf.c,v 1.211 2006/08/07 17:08:18 oster Exp $ */ +/* $NetBSD: rf_netbsdkintf.c,v 1.212 2006/08/07 20:02:22 oster Exp $ */ /*- * Copyright (c) 1996, 1997, 1998 The NetBSD Foundation, Inc. * All rights reserved. @@ -146,7 +146,7 @@ ***********************************************************/ #include -__KERNEL_RCSID(0, "$NetBSD: rf_netbsdkintf.c,v 1.211 2006/08/07 17:08:18 oster Exp $"); +__KERNEL_RCSID(0, "$NetBSD: rf_netbsdkintf.c,v 1.212 2006/08/07 20:02:22 oster Exp $"); #include #include @@ -241,7 +241,7 @@ const struct cdevsw raid_cdevsw = { struct raid_softc { int sc_flags; /* flags */ int sc_cflags; /* configuration flags */ - size_t sc_size; /* size of the raid device */ + uint64_t sc_size; /* size of the raid device */ char sc_xname[20]; /* XXX external name */ struct disk sc_dkdev; /* generic disk device info */ struct bufq_state *buf_queue; /* used for the device queue */ -- cgit