From: Ahmed Samy Date: Sun, 1 Dec 2013 11:52:03 +0000 (+0200) Subject: cpuid: fix example compilation X-Git-Url: http://git.ozlabs.org/?p=ccan;a=commitdiff_plain;h=075120f34490f1b7c55a4ebdc70bbcff17e55a84 cpuid: fix example compilation Signed-off-by: Ahmed Samy --- diff --git a/ccan/cpuid/_info b/ccan/cpuid/_info index 569dc21c..79a98c0a 100644 --- a/ccan/cpuid/_info +++ b/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; * }