Browse Source

cpuid: fix example compilation

Signed-off-by: Ahmed Samy <f.fallen45@gmail.com>
Ahmed Samy 12 years ago
parent
commit
075120f344
1 changed files with 2 additions and 2 deletions
  1. 2 2
      ccan/cpuid/_info

+ 2 - 2
ccan/cpuid/_info

@@ -13,8 +13,8 @@
  * int main(void)
  * {
  * 	uint32_t highest;
- * 	cpuid(CPU_HIGHEST_EXTENDED_FUNCTION_SUPPORTED, &highest);
- * 	printf ("Highest extended function supported: %d\n", highest);
+ * 	cpuid(CPUID_HIGHEST_EXTENDED_FUNCTION_SUPPORTED, &highest);
+ * 	printf("Highest extended function supported: %d\n", highest);
  *
  *      return 0;
  * }