diff options
| author | drochner <drochner@NetBSD.org> | 2004-06-02 22:58:28 +0000 |
|---|---|---|
| committer | drochner <drochner@NetBSD.org> | 2004-06-02 22:58:28 +0000 |
| commit | e7bdadd856b93c841d8edbc8d39b6b2c45778544 (patch) | |
| tree | 661dbfcd246b3bc5706d0ed7ffcc81aeeae8e65f /sys/dev/raidframe/raidframevar.h | |
| parent | 44a1e00a08945938fcce666bdc348a06042ffa54 (diff) | |
fix const'ificication, gcc-3.4 will notice it
Diffstat (limited to 'sys/dev/raidframe/raidframevar.h')
| -rw-r--r-- | sys/dev/raidframe/raidframevar.h | 4 |
1 files changed, 2 insertions, 2 deletions
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 */ |
