diff options
author | 2005-03-29 17:25:18 +0000 | |
---|---|---|
committer | 2005-03-29 17:25:18 +0000 | |
commit | d2a6cb5578b5336ce7138bed6234efdfc6590255 (patch) | |
tree | 85d08ef6b9d1c52db1f169db4301d8d91dcd2def | |
parent | Bring in UDF support from FreeBSD, disabled for now. (diff) | |
download | wireguard-openbsd-d2a6cb5578b5336ce7138bed6234efdfc6590255.tar.xz wireguard-openbsd-d2a6cb5578b5336ce7138bed6234efdfc6590255.zip |
Shrink struct label_t to the correct size; ok drahn@ a long time ago.
-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 |