summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrian Feldman <green@FreeBSD.org>1999-07-06 17:21:48 +0000
committerBrian Feldman <green@FreeBSD.org>1999-07-06 17:21:48 +0000
commit43bf3baa30175ec93037fa73fa3c689f7f97ae6e (patch)
tree02749a17c60bc2ce8e0b740ae0c461791f2a2d3b
parent653005f596a96cc9e6fa348af93797d6942dd38a (diff)
Notes
-rw-r--r--sys/i386/i386/identcpu.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/i386/i386/identcpu.c b/sys/i386/i386/identcpu.c
index 392dd202d0aa..3a6956fd0adf 100644
--- a/sys/i386/i386/identcpu.c
+++ b/sys/i386/i386/identcpu.c
@@ -36,7 +36,7 @@
* SUCH DAMAGE.
*
* from: Id: machdep.c,v 1.193 1996/06/18 01:22:04 bde Exp
- * $Id: identcpu.c,v 1.57.2.3 1999/06/25 03:05:48 green Exp $
+ * $Id: identcpu.c,v 1.57.2.4 1999/07/06 06:49:47 green Exp $
*/
#include "opt_cpu.h"
@@ -471,7 +471,7 @@ printcpuinfo(void)
}
} else if (strcmp(cpu_vendor, "CentaurHauls") == 0) {
strcpy(cpu_model, "IDT ");
- switch (cpu_id & 0ff0) {
+ switch (cpu_id & 0xff0) {
case 0x540:
strcat(cpu_model, "WinChip C6");
break;