From ebc4ae3b7443d58f0d1bf4c4fe96e9a1fa5a954a Mon Sep 17 00:00:00 2001 From: John Baldwin Date: Tue, 29 Oct 2002 19:08:55 +0000 Subject: [PATCH] Add a missing newline to the end of a device_printf(). Reported by: Michael G. Petry --- sys/dev/acpica/acpi_pcib.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/dev/acpica/acpi_pcib.c b/sys/dev/acpica/acpi_pcib.c index 5bdf50a488d2..3677966b7d5b 100644 --- a/sys/dev/acpica/acpi_pcib.c +++ b/sys/dev/acpica/acpi_pcib.c @@ -80,7 +80,7 @@ acpi_pcib_attach(device_t dev, ACPI_BUFFER *prt, int busno) * Attach the PCI bus proper. */ if ((child = device_add_child(dev, "pci", busno)) == NULL) { - device_printf(device_get_parent(dev), "couldn't attach pci bus"); + device_printf(device_get_parent(dev), "couldn't attach pci bus\n"); return_VALUE(ENXIO); }