From e2e7fbd5688e993f3971bdc212f7f8f4db268486 Mon Sep 17 00:00:00 2001 From: christos Date: Mon, 27 Jun 2005 03:00:03 +0000 Subject: no reason for those not to be const. --- sys/dev/cgdvar.h | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) (limited to 'sys/dev') diff --git a/sys/dev/cgdvar.h b/sys/dev/cgdvar.h index 41025a2e656..af021c704d5 100644 --- a/sys/dev/cgdvar.h +++ b/sys/dev/cgdvar.h @@ -1,4 +1,4 @@ -/* $NetBSD: cgdvar.h,v 1.3 2004/08/23 04:45:18 thorpej Exp $ */ +/* $NetBSD: cgdvar.h,v 1.4 2005/06/27 03:00:03 christos Exp $ */ /*- * Copyright (c) 2002 The NetBSD Foundation, Inc. @@ -41,15 +41,15 @@ /* ioctl(2) code */ struct cgd_ioctl { - char *ci_disk; - int ci_flags; - int ci_unit; - size_t ci_size; - char *ci_alg; - char *ci_ivmethod; - size_t ci_keylen; - char *ci_key; - size_t ci_blocksize; + const char *ci_disk; + int ci_flags; + int ci_unit; + size_t ci_size; + const char *ci_alg; + const char *ci_ivmethod; + size_t ci_keylen; + const char *ci_key; + size_t ci_blocksize; }; #ifdef _KERNEL -- cgit