revert previous commit (size_t -> int change). Thanks cube.

This commit is contained in:
christos 2006-12-02 06:22:09 +00:00
parent c54ef0193c
commit 456024195b

View File

@ -1,4 +1,4 @@
/* $NetBSD: cgdvar.h,v 1.7 2006/12/02 05:27:27 christos Exp $ */ /* $NetBSD: cgdvar.h,v 1.8 2006/12/02 06:22:09 christos Exp $ */
/*- /*-
* Copyright (c) 2002 The NetBSD Foundation, Inc. * Copyright (c) 2002 The NetBSD Foundation, Inc.
@ -49,7 +49,7 @@ struct cgd_ioctl {
const char *ci_ivmethod; const char *ci_ivmethod;
size_t ci_keylen; size_t ci_keylen;
const char *ci_key; const char *ci_key;
int ci_blocksize; /* XXX: should be size_t */ size_t ci_blocksize;
}; };
#ifdef _KERNEL #ifdef _KERNEL