From: Stephen Adams Date: Wed, 13 Nov 1996 22:15:28 +0000 (+0000) Subject: reverted change but left both #defines of KERNEL_FILE in place. X-Git-Tag: 20090517-FFI~5330 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=a8c32c53f699b599a8371db101a2fe018e4c5fb3;p=mit-scheme.git reverted change but left both #defines of KERNEL_FILE in place. --- diff --git a/v7/src/microcode/hppacach.c b/v7/src/microcode/hppacach.c index 105e75a9f..d26dbee5b 100644 --- a/v7/src/microcode/hppacach.c +++ b/v7/src/microcode/hppacach.c @@ -1,6 +1,6 @@ /* -*-C-*- -$Id: hppacach.c,v 1.10 1996/11/13 22:09:05 adams Exp $ +$Id: hppacach.c,v 1.11 1996/11/13 22:15:28 adams Exp $ Copyright (c) 1990-1993 Massachusetts Institute of Technology @@ -60,8 +60,8 @@ MIT in each case. */ /* File that contains the symbol table for the kernel */ -#define KERNEL_FILE1 "/hp-ux" -#define KERNEL_FILE2 "/stand/vmunix" +#define KERNEL_FILE "/hp-ux" +#define KERNEL_FILE "/stand/vmunix" /* File where the kernel image lives */ @@ -116,9 +116,8 @@ read_nlist (kloc) { DEBUGGING (printf ("reading nlist...\n")); - if ((nlist (KERNEL_FILE1, nl)) != 0) - if ((nlist (KERNEL_FILE2, nl)) != 0) - io_lose ("read_nlist", "failed on %s and %s", KERNEL_FILE1, KERNEL_FILE2); + if ((nlist (KERNEL_FILE, nl)) != 0) + io_lose ("read_nlist", "failed on both %s and %s", KERNEL_FILE); DEBUGGING (printf ("reading nlist done.\n"));