summaryrefslogtreecommitdiff
path: root/identify.c
diff options
context:
space:
mode:
authordavej <davej>2001-08-10 10:06:38 +0000
committerdavej <davej>2001-08-10 10:06:38 +0000
commit68465b3e96b5ec45567a0382a65c57d4ea1f52a6 (patch)
tree468a1eb73ec6086c089f8e2d8a4b47e1ade34aa6 /identify.c
parentef0ac60eeb3e7126e3c3b142813074118f372a67 (diff)
Oops, missed the %d
Diffstat (limited to 'identify.c')
-rw-r--r--identify.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/identify.c b/identify.c
index b3e2893..01b5ea1 100644
--- a/identify.c
+++ b/identify.c
@@ -1,5 +1,5 @@
/*
- * $Id: identify.c,v 1.7 2001/08/10 10:03:34 davej Exp $
+ * $Id: identify.c,v 1.8 2001/08/10 10:06:38 davej Exp $
* This file is part of x86info.
* (C) 2001 Dave Jones.
*
@@ -61,7 +61,7 @@ void identify (int cpunum)
break;
case VENDOR_INTEL:
- printf ("Family: %d Model: %d Stepping: %d Type: [%s]\n",
+ printf ("Family: %d Model: %d Stepping: %d Type: %d [%s]\n",
cpu.family, cpu.model, cpu.stepping, cpu.type, cpu.name);
display_Intel_info (cpunum, maxi, &cpu);
break;