diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2005-03-29 17:25:19 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2005-03-29 17:25:19 +0000 |
commit | 449d36e96f33619430f75dba54f492186d6c6a27 (patch) | |
tree | cb3ecf30560b47b02e6e4fe825523392e969ee33 /sys/arch | |
parent | 2ea47090ae4952e3ac013431c2d59c8cff9d1ba3 (diff) |
Shrink struct label_t to the correct size; ok drahn@ a long time ago.
Diffstat (limited to 'sys/arch')
-rw-r--r-- | sys/arch/powerpc/include/types.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/powerpc/include/types.h b/sys/arch/powerpc/include/types.h index e2782605670..cd19026ae1d 100644 --- a/sys/arch/powerpc/include/types.h +++ b/sys/arch/powerpc/include/types.h @@ -1,5 +1,5 @@ /* $NetBSD: types.h,v 1.1 1996/09/30 16:34:36 ws Exp $ */ -/* $OpenBSD: types.h,v 1.14 2004/11/26 21:23:05 miod Exp $ */ +/* $OpenBSD: types.h,v 1.15 2005/03/29 17:25:18 miod Exp $ */ /*- * Copyright (C) 1995 Wolfgang Solfrank. @@ -62,7 +62,7 @@ typedef unsigned long vsize_t; typedef unsigned long psize_t; typedef struct label_t { - int val[40]; /* double check this XXX */ + int val[25]; } label_t; #define __BROKEN_INDIRECT_CONFIG |