diff options
author | Dave Jones <davej@redhat.com> | 2011-02-22 01:47:44 -0500 |
---|---|---|
committer | Dave Jones <davej@redhat.com> | 2011-02-22 01:47:44 -0500 |
commit | 031a5de81327026a03d153e318b4600639a4640e (patch) | |
tree | d6266a69f211d3d4fbd6b57ba7970bddc20ba68b /dumpregs.c | |
parent | 274a1950992fdcc5ee060dad41dc3c407ca8c497 (diff) |
coding style cleanups
Diffstat (limited to 'dumpregs.c')
-rw-r--r-- | dumpregs.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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); } |