From e7bdadd856b93c841d8edbc8d39b6b2c45778544 Mon Sep 17 00:00:00 2001 From: drochner Date: Wed, 2 Jun 2004 22:58:28 +0000 Subject: fix const'ificication, gcc-3.4 will notice it --- 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 297debebc64..393e89bb283 100644 --- a/sys/dev/raidframe/raidframevar.h +++ b/sys/dev/raidframe/raidframevar.h @@ -1,4 +1,4 @@ -/* $NetBSD: raidframevar.h,v 1.6 2004/01/04 06:37:16 oster Exp $ */ +/* $NetBSD: raidframevar.h,v 1.7 2004/06/02 22:58:28 drochner Exp $ */ /*- * Copyright (c) 1996, 1997, 1998 The NetBSD Foundation, Inc. * All rights reserved. @@ -569,7 +569,7 @@ typedef struct RF_LayoutSW_s { /* states to step through in an access. Must end with "LastState". The * default is DefaultStates in rf_layout.c */ - RF_AccessState_t *states; + const RF_AccessState_t *states; RF_AccessStripeMapFlags_t flags; #endif /* !KERNEL */ -- cgit