From 243ae4806b2e3090d7f9f625d183b3ce6a6c971d Mon Sep 17 00:00:00 2001 From: fvdl Date: Fri, 29 Sep 2000 13:15:48 +0000 Subject: [PATCH] oops, typo in previous (|| -> &&) --- sys/arch/i386/i386/machdep.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/arch/i386/i386/machdep.c b/sys/arch/i386/i386/machdep.c index f6ef8443015c..a3bd685d46fb 100644 --- a/sys/arch/i386/i386/machdep.c +++ b/sys/arch/i386/i386/machdep.c @@ -1,4 +1,4 @@ -/* $NetBSD: machdep.c,v 1.404 2000/09/29 13:05:12 fvdl Exp $ */ +/* $NetBSD: machdep.c,v 1.405 2000/09/29 13:15:48 fvdl Exp $ */ /*- * Copyright (c) 1996, 1997, 1998, 2000 The NetBSD Foundation, Inc. @@ -352,7 +352,7 @@ cpu_startup() printf("cpu0: features %s\n", buf); } - if (cpuid_level >= 3 || ((cpu_feature & CPUID_PN) != 0)) + if (cpuid_level >= 3 && ((cpu_feature & CPUID_PN) != 0)) printf("cpu0: serial number %08X%08X%08X\n", cpu_serial[0], cpu_serial[1], cpu_serial[2]);