summaryrefslogtreecommitdiffstats
path: root/sys/kern/subr_smp.c
diff options
context:
space:
mode:
authorfsmp <fsmp@FreeBSD.org>1997-07-18 03:58:14 +0000
committerfsmp <fsmp@FreeBSD.org>1997-07-18 03:58:14 +0000
commit669fe5c8eb4592b4940a2e8f557b9868408d277b (patch)
tree0e9d32cfd3745f36e89630f5fec15e5f6dbeb96a /sys/kern/subr_smp.c
parent0f44d0746c76df050ec27f9a5448b0a9e5566532 (diff)
downloadFreeBSD-src-669fe5c8eb4592b4940a2e8f557b9868408d277b.zip
FreeBSD-src-669fe5c8eb4592b4940a2e8f557b9868408d277b.tar.gz
printf cleanup.
Diffstat (limited to 'sys/kern/subr_smp.c')
-rw-r--r--sys/kern/subr_smp.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/kern/subr_smp.c b/sys/kern/subr_smp.c
index 7b74a36..f1cd1a2 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]);
}
OpenPOWER on IntegriCloud