From 7067d99bb7f523f418fc234111b12239ea050c50 Mon Sep 17 00:00:00 2001 From: matt Date: Thu, 1 Jun 2000 04:16:37 +0000 Subject: [PATCH] Since booted_device/paration are globals, no need to init them to 0. --- sys/arch/i386/i386/autoconf.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/sys/arch/i386/i386/autoconf.c b/sys/arch/i386/i386/autoconf.c index 19908ba34c61..dfb931b9366a 100644 --- a/sys/arch/i386/i386/autoconf.c +++ b/sys/arch/i386/i386/autoconf.c @@ -1,4 +1,4 @@ -/* $NetBSD: autoconf.c,v 1.48 2000/06/01 00:49:55 matt Exp $ */ +/* $NetBSD: autoconf.c,v 1.49 2000/06/01 04:16:37 matt Exp $ */ /*- * Copyright (c) 1990 The Regents of the University of California. @@ -356,11 +356,13 @@ findroot(devpp, partp) char buf[32]; #endif +#if 0 /* * Default to "not found." */ *devpp = NULL; *partp = 0; +#endif if (booted_device) { *devpp = booted_device;