From 3ff7541149e497ecfacb32a6a6d568ae454e97b4 Mon Sep 17 00:00:00 2001 From: christos Date: Thu, 26 Sep 2019 01:36:10 +0000 Subject: make nspares unsigned; it is assigned from numSpares which is unsigned. --- sys/dev/raidframe/raidframevar.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sys/dev/raidframe/raidframevar.h') diff --git a/sys/dev/raidframe/raidframevar.h b/sys/dev/raidframe/raidframevar.h index 34083782a4f..b260e3adaeb 100644 --- a/sys/dev/raidframe/raidframevar.h +++ b/sys/dev/raidframe/raidframevar.h @@ -1,4 +1,4 @@ -/* $NetBSD: raidframevar.h,v 1.19 2018/04/19 21:50:09 christos Exp $ */ +/* $NetBSD: raidframevar.h,v 1.20 2019/09/26 01:36:10 christos Exp $ */ /*- * Copyright (c) 1996, 1997, 1998 The NetBSD Foundation, Inc. * All rights reserved. @@ -519,7 +519,7 @@ typedef struct RF_DeviceConfig_s { u_int maxqdepth; int ndevs; RF_RaidDisk_t devs[RF_MAX_DISKS]; - int nspares; + u_int nspares; RF_RaidDisk_t spares[RF_MAX_DISKS]; } RF_DeviceConfig_t; -- cgit