From e72ffec772692374130a65a2e2129b19ab1dad4d Mon Sep 17 00:00:00 2001 Message-Id: From: Mark Wooding Date: Wed, 31 Aug 2011 14:47:32 +0100 Subject: [PATCH 1/1] x86-model.c: Actually display the stepping. Organization: Straylight/Edgeware From: Mark Wooding --- x86-model.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/x86-model.c b/x86-model.c index 59640c7..cb90fb3 100644 --- a/x86-model.c +++ b/x86-model.c @@ -84,7 +84,7 @@ static void identify(unsigned f) if (family == 0x06 || family == 0x0f) printf(" (base = %d, extended = %d)", model, extmodel); putchar('\n'); - printf("stepping = %d\n", type); + printf("stepping = %d\n", stepping); } } -- [mdw]