Add a missing newline during panic printf's for SMP systems that don't

have APICS.  (Like all the !i386 archs).
This commit is contained in:
John Baldwin 2002-07-11 21:56:37 +00:00
parent a1baa5130d
commit eb80408cff

View File

@ -468,6 +468,8 @@ panic(const char *fmt, ...)
printf("cpuid = %d; ", PCPU_GET(cpuid));
#ifdef APIC_IO
printf("lapic.id = %08x\n", lapic.id);
#else
printf("\n");
#endif
#endif