From 1538076f47762b382795cb6de9b42f8f688a7ee9 Mon Sep 17 00:00:00 2001 From: cgd Date: Sat, 14 Feb 1998 01:18:46 +0000 Subject: [PATCH] fix pasto in last (sigh) --- sys/arch/alpha/alpha/machdep.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sys/arch/alpha/alpha/machdep.c b/sys/arch/alpha/alpha/machdep.c index 0d8776cfc3e8..173a388b6807 100644 --- a/sys/arch/alpha/alpha/machdep.c +++ b/sys/arch/alpha/alpha/machdep.c @@ -1,4 +1,4 @@ -/* $NetBSD: machdep.c,v 1.108 1998/02/14 01:17:19 cgd Exp $ */ +/* $NetBSD: machdep.c,v 1.109 1998/02/14 01:18:46 cgd Exp $ */ /* * Copyright (c) 1994, 1995, 1996 Carnegie-Mellon University. @@ -29,7 +29,7 @@ #include /* RCS ID & Copyright macro defns */ -__KERNEL_RCSID(0, "$NetBSD: machdep.c,v 1.108 1998/02/14 01:17:19 cgd Exp $"); +__KERNEL_RCSID(0, "$NetBSD: machdep.c,v 1.109 1998/02/14 01:18:46 cgd Exp $"); #include #include @@ -1026,7 +1026,7 @@ cpu_dumpsize() int size; size = ALIGN(sizeof(kcore_seg_t)) + ALIGN(sizeof(cpu_kcore_hdr_t)) + - ALIGN(mem_cluster_cnt * sizeof(phys_ram_seg_t)); + ALIGN(1 * sizeof(phys_ram_seg_t)); if (roundup(size, dbtob(1)) != dbtob(1)) return -1;