diff options
author | Steve Passe <fsmp@FreeBSD.org> | 1997-07-18 03:58:14 +0000 |
---|---|---|
committer | Steve Passe <fsmp@FreeBSD.org> | 1997-07-18 03:58:14 +0000 |
commit | 75c179003e68ca32caf9c6faae428e6fff591e23 (patch) | |
tree | 4b10e6225072b39f09b71f625ef0b75113d8dcaf /sys/kern/subr_smp.c | |
parent | 1654bb8245c631b49a3ebb46fc2fb88769becdd3 (diff) | |
download | src-75c179003e68ca32caf9c6faae428e6fff591e23.tar.gz src-75c179003e68ca32caf9c6faae428e6fff591e23.zip |
printf cleanup.
Notes
Notes:
svn path=/head/; revision=27489
Diffstat (limited to 'sys/kern/subr_smp.c')
-rw-r--r-- | sys/kern/subr_smp.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/kern/subr_smp.c b/sys/kern/subr_smp.c index 7b74a3632a89..f1cd1a225736 100644 --- a/sys/kern/subr_smp.c +++ b/sys/kern/subr_smp.c @@ -22,7 +22,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: mp_machdep.c,v 1.27 1997/07/13 01:22:43 fsmp Exp $ + * $Id: mp_machdep.c,v 1.28 1997/07/17 19:44:56 dyson Exp $ */ #include "opt_smp.h" @@ -350,7 +350,7 @@ mp_announce(void) POSTCODE(MP_ANNOUNCE_POST); printf("FreeBSD/SMP: Multiprocessor motherboard\n"); - printf(" cpu0 (BSP): apic id: %d", CPU_TO_ID(0)); + printf(" cpu0 (BSP): apic id: %2d", CPU_TO_ID(0)); printf(", version: 0x%08x", cpu_apic_versions[0]); printf(", at 0x%08x\n", cpu_apic_address); for (x = 1; x <= mp_naps; ++x) { @@ -361,7 +361,7 @@ mp_announce(void) #if defined(APIC_IO) for (x = 0; x < mp_napics; ++x) { - printf(" io%d (APIC): apic id: %d", x, IO_TO_ID(x)); + printf(" io%d (APIC): apic id: %2d", x, IO_TO_ID(x)); printf(", version: 0x%08x", io_apic_versions[x]); printf(", at 0x%08x\n", io_apic_address[x]); } |