chiark / gitweb /
x86-model.c: Actually display the stepping.
authorMark Wooding <mdw@distorted.org.uk>
Wed, 31 Aug 2011 13:47:32 +0000 (14:47 +0100)
committerMark Wooding <mdw@distorted.org.uk>
Wed, 31 Aug 2011 13:47:32 +0000 (14:47 +0100)
x86-model.c

index 59640c711d1a552c53ef4ae98559ad552195e426..cb90fb3dab75cd8556f47d7851148d40da48f470 100644 (file)
@@ -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);
   }
 }