summaryrefslogtreecommitdiff
path: root/dumpregs.c
diff options
context:
space:
mode:
authorDave Jones <davej@redhat.com>2011-02-22 01:47:44 -0500
committerDave Jones <davej@redhat.com>2011-02-22 01:47:44 -0500
commit031a5de81327026a03d153e318b4600639a4640e (patch)
treed6266a69f211d3d4fbd6b57ba7970bddc20ba68b /dumpregs.c
parent274a1950992fdcc5ee060dad41dc3c407ca8c497 (diff)
coding style cleanups
Diffstat (limited to 'dumpregs.c')
-rw-r--r--dumpregs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/dumpregs.c b/dumpregs.c
index 7ffd09e..0585506 100644
--- a/dumpregs.c
+++ b/dumpregs.c
@@ -13,7 +13,7 @@ void dumpregs(int cpunum, unsigned int begin, unsigned int end)
unsigned int eax, ebx, ecx, edx;
/* Dump all the CPUID results in raw hex */
- for (i=begin; i<=end; i++) {
+ for (i = begin; i <= end; i++) {
cpuid(cpunum, i, &eax, &ebx, &ecx, &edx);
printf("eax in: 0x%08x, eax = %08x ebx = %08x ecx = %08x edx = %08x\n", i, eax, ebx, ecx, edx);
}