summaryrefslogtreecommitdiff
path: root/bench/MHz.c
diff options
context:
space:
mode:
Diffstat (limited to 'bench/MHz.c')
-rw-r--r--bench/MHz.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/bench/MHz.c b/bench/MHz.c
index bdb12f8..0e2cb9b 100644
--- a/bench/MHz.c
+++ b/bench/MHz.c
@@ -32,9 +32,9 @@ void estimate_MHz(struct cpudata *cpu)
unsigned long freq = 1;
/* Make sure we have a TSC (and hence RDTSC) */
- cpuid (cpu->number, 1, &eax, &ebx, &ecx, &edx);
+ cpuid(cpu->number, 1, &eax, &ebx, &ecx, &edx);
if ((edx & (1<<4))==0) {
- printf ("No TSC, MHz calculation cannot be performed.\n");
+ printf("No TSC, MHz calculation cannot be performed.\n");
cpu->MHz = 0;
return;
}