From 5f39c378a32aabb91db2f49eb2eff14e5a1f22a2 Mon Sep 17 00:00:00 2001 From: tsubai Date: Mon, 4 Sep 2000 22:18:43 +0000 Subject: [PATCH] Correct label_t size. --- sys/arch/sh3/include/types.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/arch/sh3/include/types.h b/sys/arch/sh3/include/types.h index a8c75b10c608..d615379eccb7 100644 --- a/sys/arch/sh3/include/types.h +++ b/sys/arch/sh3/include/types.h @@ -1,4 +1,4 @@ -/* $NetBSD: types.h,v 1.2 2000/02/05 00:13:25 cgd Exp $ */ +/* $NetBSD: types.h,v 1.3 2000/09/04 22:18:43 tsubai Exp $ */ /*- * Copyright (c) 1990 The Regents of the University of California. @@ -42,7 +42,7 @@ #if defined(_KERNEL) typedef struct label_t { - int val[6]; + int val[9]; } label_t; #endif